mirror of
https://github.com/MTSGJ/opensim.currency.git
synced 2026-07-27 21:10:39 +00:00
19 lines
663 B
Batchfile
Executable File
19 lines
663 B
Batchfile
Executable File
@echo OFF
|
|
|
|
dotnet ..\bin\prebuild.dll /target vs2022 /targetframework net6_0 /excludedir = "obj | bin" /file prebuild.net.xml
|
|
|
|
@echo Creating compile.bat
|
|
rem To compile in debug mode
|
|
@echo dotnet build --configuration Release OpenSim.Currency.sln > compile.bat
|
|
rem To compile in release mode comment line (add rem to start) above and uncomment next (remove rem)
|
|
rem @echo dotnet build --configuration Debug OpenSim.sln > compile.bat
|
|
:done
|
|
if exist "..\bin\addin-db-002" (
|
|
del /F/Q/S ..\bin\addin-db-002 > NUL
|
|
rmdir /Q/S ..\bin\addin-db-002
|
|
)
|
|
if exist "..\bin\addin-db-004" (
|
|
del /F/Q/S ..\bin\addin-db-004 > NUL
|
|
rmdir /Q/S ..\bin\addin-db-004
|
|
)
|