newtonsoft not used outside ios #413
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build | |
| on: [push, pull_request] | |
| jobs: | |
| Everything: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: 'recursive' | |
| - name: Setup .NET | |
| uses: actions/setup-dotnet@v4 | |
| with: | |
| dotnet-version: | | |
| 6.0.x | |
| 10.0.x | |
| - name: Setup MSBuild Path | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Restore NuGet Packages | |
| run: dotnet restore CSharpMath.sln | |
| - name: Build Everything | |
| run: msbuild CSharpMath.sln /p:Configuration=Release |