chore(deps): update microsoft.testing to 1.5.1 #486
This file contains 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 Framework | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
modularpipeline-netframework: | |
environment: ${{ github.ref == 'refs/heads/main' && 'Production' || 'Pull Requests' }} | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup .NET 9 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 9.0.x | |
- name: Setup .NET Framework | |
uses: microsoft/setup-msbuild@v2 | |
- name: Build | |
run: dotnet build -c Release -p:TreatWarningsAsErrors=true | |
- name: Run Pipeline | |
uses: ./.github/actions/execute-pipeline | |
with: | |
environment: ${{ github.ref == 'refs/heads/main' && 'Production' || 'Development' }} | |
netversion: 'net472' |