build: 格式化shell文件
This commit is contained in:
parent
260b9b0481
commit
a5f3b75dfe
|
@ -6,6 +6,10 @@ root=true
|
||||||
# All files
|
# All files
|
||||||
[*]
|
[*]
|
||||||
indent_style = space
|
indent_style = space
|
||||||
|
# shell files
|
||||||
|
[*.{cmd,sh,bat}]
|
||||||
|
insert_final_newline = true
|
||||||
|
trim_trailing_whitespace = true
|
||||||
# Code files
|
# Code files
|
||||||
[*.{cs,csx,vb,vbx}]
|
[*.{cs,csx,vb,vbx}]
|
||||||
indent_size = 4
|
indent_size = 4
|
||||||
|
|
|
@ -96,6 +96,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "win", "win", "{C6F2DCA0-794
|
||||||
EndProject
|
EndProject
|
||||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "linux", "linux", "{FDCFC3E3-14CF-40B2-9FE5-5BC239AAC110}"
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "linux", "linux", "{FDCFC3E3-14CF-40B2-9FE5-5BC239AAC110}"
|
||||||
ProjectSection(SolutionItems) = preProject
|
ProjectSection(SolutionItems) = preProject
|
||||||
|
deploy-admin.sh = deploy-admin.sh
|
||||||
|
deploy-client.sh = deploy-client.sh
|
||||||
publish-admin.sh = publish-admin.sh
|
publish-admin.sh = publish-admin.sh
|
||||||
publish-client.sh = publish-client.sh
|
publish-client.sh = publish-client.sh
|
||||||
watch-run-admin.sh = watch-run-admin.sh
|
watch-run-admin.sh = watch-run-admin.sh
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
<Project>
|
<Project>
|
||||||
|
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<Copyright>Longbow</Copyright>
|
<Copyright>Longbow</Copyright>
|
||||||
<Authors>Argo Zhang(argo@163.com)</Authors>
|
<Authors>Argo Zhang(argo@163.com)</Authors>
|
||||||
|
@ -11,9 +12,9 @@
|
||||||
<Target Condition=" '$(TargetFramework)' == 'netcoreapp3.0' " Name="PostPublish" AfterTargets="Publish">
|
<Target Condition=" '$(TargetFramework)' == 'netcoreapp3.0' " Name="PostPublish" AfterTargets="Publish">
|
||||||
<Message Text="Publish -> $(PublishDir)" Importance="high" />
|
<Message Text="Publish -> $(PublishDir)" Importance="high" />
|
||||||
<Copy Condition="'$(OS)' == 'Windows_NT'" DestinationFolder="$(PublishDir)" SourceFiles="$(MSBuildThisFileDirectory)src\admin\keys\Longbow.lic" SkipUnchangedFiles="true" />
|
<Copy Condition="'$(OS)' == 'Windows_NT'" DestinationFolder="$(PublishDir)" SourceFiles="$(MSBuildThisFileDirectory)src\admin\keys\Longbow.lic" SkipUnchangedFiles="true" />
|
||||||
<Copy Condition="'$(OS)' == 'UNIX'" DestinationFolder="$(PublishDir)" SourceFiles="$(MSBuildThisFileDirectory)src/admin/keys/Longbow.lic" SkipUnchangedFiles="true" />
|
|
||||||
<Copy Condition="'$(OS)' == 'Windows_NT'" DestinationFolder="$(PublishDir)" SourceFiles="$(MSBuildThisFileDirectory)src\admin\Bootstrap.Admin\BootstrapAdmin.db" SkipUnchangedFiles="true" />
|
<Copy Condition="'$(OS)' == 'Windows_NT'" DestinationFolder="$(PublishDir)" SourceFiles="$(MSBuildThisFileDirectory)src\admin\Bootstrap.Admin\BootstrapAdmin.db" SkipUnchangedFiles="true" />
|
||||||
<Copy Condition="'$(OS)' == 'Windows_NT'" DestinationFolder="$(PublishDir)" SourceFiles="$(MSBuildThisFileDirectory)src/admin/Bootstrap.Admin/BootstrapAdmin.db" SkipUnchangedFiles="true" />
|
<Copy Condition="'$(OS)' == 'UNIX'" DestinationFolder="$(PublishDir)" SourceFiles="$(MSBuildThisFileDirectory)src/admin/keys/Longbow.lic" SkipUnchangedFiles="true" />
|
||||||
|
<Copy Condition="'$(OS)' == 'UNIX'" DestinationFolder="$(PublishDir)" SourceFiles="$(MSBuildThisFileDirectory)src/admin/Bootstrap.Admin/BootstrapAdmin.db" SkipUnchangedFiles="true" />
|
||||||
</Target>
|
</Target>
|
||||||
|
|
||||||
<Target Condition=" '$(TargetFramework)' == 'netcoreapp3.0' " Name="PostBuild" AfterTargets="PostBuildEvent">
|
<Target Condition=" '$(TargetFramework)' == 'netcoreapp3.0' " Name="PostBuild" AfterTargets="PostBuildEvent">
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
cd ~/BootstrapAdmin
|
||||||
|
git pull
|
||||||
|
dotnet publish src/admin/Bootstrap.Admin -c Release
|
||||||
|
|
||||||
|
rm -f ~/BootstrapAdmin/src/admin/Bootstrap.Admin/bin/Release/netcoreapp2.2/publish/appsettings*.json
|
||||||
|
systemctl stop ba.admin
|
||||||
|
\cp -fr ~/BootstrapAdmin/src/admin/Bootstrap.Admin/bin/Release/netcoreapp2.2/publish/* /usr/local/ba/admin/
|
||||||
|
systemctl start ba.admin
|
||||||
|
systemctl status ba.admin -l
|
|
@ -0,0 +1,11 @@
|
||||||
|
#! /bin/bash
|
||||||
|
|
||||||
|
cd ~/BootstrapAdmin
|
||||||
|
git pull
|
||||||
|
dotnet publish src/client/Bootstrap.Client -c Release
|
||||||
|
|
||||||
|
rm -f ~/BootstrapAdmin/src/client/Bootstrap.Client/bin/Release/netcoreapp2.2/publish/appsettings*.json
|
||||||
|
systemctl stop ba.client
|
||||||
|
\cp -fr ~/BootstrapAdmin/src/client/Bootstrap.Client/bin/Release/netcoreapp2.2/publish/* /usr/local/ba/client/
|
||||||
|
systemctl start ba.client
|
||||||
|
systemctl status ba.client -l
|
|
@ -1,11 +1,3 @@
|
||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
|
||||||
cd ~/BootstrapAdmin
|
|
||||||
git pull
|
|
||||||
dotnet publish src/admin/Bootstrap.Admin -c Release
|
dotnet publish src/admin/Bootstrap.Admin -c Release
|
||||||
|
|
||||||
rm -f ~/BootstrapAdmin/src/admin/Bootstrap.Admin/bin/Release/netcoreapp2.2/publish/appsettings*.json
|
|
||||||
systemctl stop ba.admin
|
|
||||||
\cp -fr ~/BootstrapAdmin/src/admin/Bootstrap.Admin/bin/Release/netcoreapp2.2/publish/* /usr/local/ba/admin/
|
|
||||||
systemctl start ba.admin
|
|
||||||
systemctl status ba.admin
|
|
||||||
|
|
|
@ -1,11 +1,3 @@
|
||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
|
||||||
cd ~/BootstrapAdmin
|
|
||||||
git pull
|
|
||||||
dotnet publish src/client/Bootstrap.Client -c Release
|
dotnet publish src/client/Bootstrap.Client -c Release
|
||||||
|
|
||||||
rm -f ~/BootstrapAdmin/src/client/Bootstrap.Client/bin/Release/netcoreapp2.2/publish/appsettings*.json
|
|
||||||
systemctl stop ba.client
|
|
||||||
\cp -fr ~/BootstrapAdmin/src/client/Bootstrap.Client/bin/Release/netcoreapp2.2/publish/* /usr/local/ba/client/
|
|
||||||
systemctl start ba.client
|
|
||||||
systemctl status ba.client
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
dotnet watch --project ./src/admin/Bootstrap.Admin run
|
dotnet watch --project ./src/admin/Bootstrap.Admin run
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
|
||||||
dotnet watch --project ./src/admin/Bootstrap.Admin run
|
dotnet watch --project ./src/admin/Bootstrap.Admin run
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
@echo off
|
@echo off
|
||||||
|
|
||||||
dotnet watch --project ./src/client/Bootstrap.Client run
|
dotnet watch --project ./src/client/Bootstrap.Client run
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
#! /bin/bash
|
#! /bin/bash
|
||||||
|
|
||||||
dotnet watch --project ./src/client/Bootstrap.Client run
|
dotnet watch --project ./src/client/Bootstrap.Client run
|
||||||
|
|
Loading…
Reference in New Issue