mirror of
https://github.com/opensim/opensim.git
synced 2026-08-14 17:55:39 +08:00
14 lines
533 B
Batchfile
Executable File
14 lines
533 B
Batchfile
Executable File
@echo OFF
|
|
|
|
dotnet bin\prebuild.dll /target vs2022 /targetframework net6_0 /excludedir = "obj | bin" /file prebuild.xml
|
|
|
|
@echo Creating compile.bat
|
|
rem To compile in debug mode
|
|
@echo dotnet build --configuration Release OpenSim.sln > compile.bat
|
|
rem To compile in release mode comment line (add rem to start) above and uncomment next (remove rem)
|
|
rem @echo %ValueValue% /p:Configuration=Release 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
|
|
) |