Merge pull request #408 from irihitech/buildscript

Add simple build scripts.
This commit is contained in:
Dong Bin
2024-09-14 15:16:59 +08:00
committed by GitHub
2 changed files with 6 additions and 0 deletions

3
build.ps1 Normal file
View File

@@ -0,0 +1,3 @@
dotnet build ./src/Ursa/Ursa.csproj -c Release
dotnet build ./src/Ursa.Themes.Semi/Ursa.Themes.Semi.csproj -c Release
dotnet build ./src/Ursa.PrismExtension/Ursa.PrismExtension.csproj -c Release

3
build.sh Executable file
View File

@@ -0,0 +1,3 @@
dotnet build ./src/Ursa/Ursa.csproj -c Release
dotnet build ./src/Ursa.Themes.Semi/Ursa.Themes.Semi.csproj -c Release
dotnet build ./src/Ursa.PrismExtension/Ursa.PrismExtension.csproj -c Release