Skip to content

Commit

Permalink
Merge pull request #10 from InfinityGhost/update-version
Browse files Browse the repository at this point in the history
Update submodule and build script
  • Loading branch information
InfinityGhost authored Dec 22, 2020
2 parents 4a5f508 + b0f7966 commit a93a57d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
5 changes: 2 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
*/bin/
*/obj/
build/
bin/
obj/
.vscode/
2 changes: 1 addition & 1 deletion .modules/OpenTabletDriver
Submodule OpenTabletDriver updated 161 files
10 changes: 8 additions & 2 deletions build.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,8 @@
rm -rf ./bin
dotnet build */*.csproj -f netcoreapp3.1 -o ./build

framework="net5"
output="./bin"
rm -rvf $output

for project in */*.csproj; do
dotnet build $project -f $framework -o $output
done

0 comments on commit a93a57d

Please sign in to comment.