File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 88 - main
99 paths :
1010 - src/**
11+ - .github/**
1112
1213jobs :
1314 build :
@@ -19,18 +20,22 @@ jobs:
1920 uses : actions/checkout@v2
2021 with :
2122 fetch-depth : 0
22- - name : Setup .NET Core
23+ - name : Setup .NET 5.0
2324 uses : actions/setup-dotnet@v1
2425 with :
2526 dotnet-version : 5.0.x
27+ - name : Setup .NET Core 3.1
28+ uses : actions/setup-dotnet@v1
29+ with :
30+ dotnet-version : 3.1.x
2631 - name : Install GitVersion
2732 uses : gittools/actions/gitversion/setup@v0.9.6
2833 with :
2934 versionSpec : ' 5.x'
3035 - name : Install dependencies
3136 run : dotnet restore ./src/AzureMapsControl.Components/AzureMapsControl.Components.csproj
3237 - name : Build
33- run : dotnet build --configuration Release --no-restore ./src/AzureMapsControl.Components/AzureMapsControl.Components.csproj
38+ run : dotnet build --configuration Release --no-restore ./src/AzureMapsControl.Components/AzureMapsControl.Components.csproj -f net5.0
3439 - name : Test
3540 run : dotnet test ./tests/AzureMapsControl.Components.Tests/AzureMapsControl.Components.Tests.csproj
3641 - name : Use GitVersion
You can’t perform that action at this time.
0 commit comments