Last commit for runprebuild.sh: e731edfa2e50fa225518835f47d2ca4ac0cd99e6

move minimal dotnet version to 8

UbitUmarov [2024-04-20 22:37:37]
move minimal dotnet version to 8
  1. #!/bin/sh
  2.  
  3. case "$1" in
  4.  
  5. 'clean')
  6. dotnet bin/prebuild.dll /file prebuild.xml /clean
  7.  
  8. ;;
  9.  
  10.  
  11. 'autoclean')
  12.  
  13. echo y|dotnet bin/prebuild.dll /file prebuild.xml /clean
  14.  
  15. ;;
  16.  
  17.  
  18.  
  19. *)
  20.  
  21. cp bin/System.Drawing.Common.dll.linux bin/System.Drawing.Common.dll
  22. dotnet bin/prebuild.dll /target vs2022 /targetframework net6_0 /excludedir = "obj | bin" /file prebuild.xml
  23. echo "dotnet build -c Release OpenSim.sln" > compile.sh
  24. chmod +x compile.sh
  25.  
  26. ;;
  27.  
  28. esac