Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,18 @@ defaults:
jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
dotnet: [ '6.0.405', '8.0.101' ]
steps:
- uses: actions/checkout@v3
- name: Setup .NET 6.0
- name: Setup .NET ${{ matrix.dotnet }}
uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a
id: setup
with:
dotnet-version: 6.0.405
dotnet-version: ${{ matrix.dotnet }}
- name: Create temporary global.json
run: echo '{"sdk":{"version":"${{ steps.setup.outputs.dotnet-version }}"}}' > ./global.json
- name: Install solution dependencies
run: dotnet restore
- name: Build
Expand Down
3 changes: 1 addition & 2 deletions libraries/src/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<Project>
<PropertyGroup>

<TargetFramework>net6.0</TargetFramework>
<LangVersion>default</LangVersion>
<!-- Version is generated when packaging the individual csproj -->
<Version>0.0.1</Version>
Expand All @@ -26,4 +25,4 @@
</ItemGroup>


</Project>
</Project>