-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- updated build script, dependencies and project configuration
- removed deprecated library checks
- Loading branch information
1 parent
c043b3f
commit 7cfb79c
Showing
4 changed files
with
4 additions
and
39 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
#!/bin/sh -e | ||
echo Rebuilding Spixi Bot... | ||
echo Cleaning previous build | ||
msbuild SpixiBot.sln /p:Configuration=Release /target:Clean | ||
echo Removing packages | ||
rm -rf packages | ||
dotnet clean --configuration Release | ||
echo Restoring packages | ||
nuget restore SpixiBot.sln | ||
dotnet restore | ||
echo Building Spixi Bot | ||
msbuild SpixiBot.sln /p:Configuration=Release | ||
dotnet build --configuration Release | ||
echo Done rebuilding Spixi Bot |