Last commit for runprebuild.bat: 5aeabd40fd0768ca7a4e9be58398e916314ace77

fix runprebuild comment

UbitUmarov [2024-04-21 09:47:36]
fix runprebuild comment
  1. @echo OFF
  2.  
  3. copy bin\System.Drawing.Common.dll.win bin\System.Drawing.Common.dll
  4.  
  5. dotnet bin\prebuild.dll /target vs2022 /targetframework net6_0 /excludedir = "obj | bin" /file prebuild.xml
  6.  
  7. @echo Creating compile.bat
  8. rem To compile in debug mode
  9. @echo dotnet build --configuration Release OpenSim.sln > compile.bat
  10. rem To compile in release mode comment line (add rem to start) above and uncomment next (remove rem)
  11. rem @echo dotnet build --configuration Debug OpenSim.sln > compile.bat
  12. :done
  13.  
  14.  
  15. if exist "bin\addin-db-002" (
  16. del /F/Q/S bin\addin-db-002 > NUL
  17. rmdir /Q/S bin\addin-db-002
  18. )
  19. if exist "bin\addin-db-004" (
  20. del /F/Q/S bin\addin-db-004 > NUL
  21. rmdir /Q/S bin\addin-db-004
  22. )