Skip to content

Commit a93a57d

Browse files
Merge pull request #10 from InfinityGhost/update-version
Update submodule and build script
2 parents 4a5f508 + b0f7966 commit a93a57d

3 files changed

Lines changed: 11 additions & 6 deletions

File tree

.gitignore

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
*/bin/
2-
*/obj/
3-
build/
1+
bin/
2+
obj/
43
.vscode/

.modules/OpenTabletDriver

Submodule OpenTabletDriver updated 161 files

build.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,8 @@
1-
rm -rf ./bin
2-
dotnet build */*.csproj -f netcoreapp3.1 -o ./build
1+
2+
framework="net5"
3+
output="./bin"
4+
rm -rvf $output
5+
6+
for project in */*.csproj; do
7+
dotnet build $project -f $framework -o $output
8+
done

0 commit comments

Comments
 (0)