Update 17.14 packages for better 18.0 compatibility #655
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: .NET | |
| on: | |
| push: | |
| branches: [ "main", "phase-2-docs", "preview" ] | |
| pull_request: | |
| branches: [ "main", "phase-2-docs", "preview" ] | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: setup-msbuild | |
| uses: microsoft/[email protected] | |
| # - name: Setup dotnet | |
| # uses: actions/setup-dotnet@v3 | |
| # with: | |
| # global-json-file: global.json | |
| - name: Restore dependencies | |
| run: msbuild /t:restore New_Extensibility_Model/Samples/Samples.sln | |
| - name: Build | |
| run: msbuild /t:build New_Extensibility_Model/Samples/Samples.sln |