build.bat 401 B

1234567891011121314151617
  1. @rem enter repo root
  2. cd /d %~dp0\..\..\..
  3. cd csharp
  4. @rem Install dotnet SDK
  5. powershell -File install_dotnet_sdk.ps1
  6. set PATH=%LOCALAPPDATA%\Microsoft\dotnet;%PATH%
  7. @rem Disable some unwanted dotnet options
  8. set DOTNET_SKIP_FIRST_TIME_EXPERIENCE=true
  9. set DOTNET_CLI_TELEMETRY_OPTOUT=true
  10. @rem Work around https://github.com/dotnet/core/issues/5881
  11. dotnet nuget locals all --clear
  12. call buildall.bat