mirror of
https://github.com/MTSGJ/opensim.currency.git
synced 2026-07-27 21:10:39 +00:00
13 lines
300 B
Bash
Executable File
13 lines
300 B
Bash
Executable File
#!/bin/bash
|
|
#
|
|
DOTNETVER=9.0
|
|
|
|
if [ "$1" != "" ]; then
|
|
DOTNETVER=$1
|
|
fi
|
|
VER=`echo $DOTNETVER | sed -e "s/\./_/"`
|
|
|
|
echo y | dotnet ../bin/prebuild.dll /file prebuild.net.xml /clean
|
|
dotnet ../bin/prebuild.dll /target vs2022 /targetframework net${VER} /excludedir = "obj | bin" /file prebuild.net.xml
|
|
|