Skip to content

Commit e115ebd

Browse files
committed
Add support for .Net 7
1 parent 5e2c4bf commit e115ebd

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ jobs:
1717
uses: actions/setup-dotnet@v2
1818
with:
1919
dotnet-version: |
20+
7.0.x
2021
6.0.x
2122
- name: Restore dependencies
2223
run: dotnet restore

.github/workflows/publish.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
uses: actions/setup-dotnet@v2
1616
with:
1717
dotnet-version: |
18+
7.0.x
1819
6.0.x
1920
- name: Build Release
2021
run: dotnet build -c Release

Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<PropertyGroup>
3-
<TargetFrameworks>net6.0</TargetFrameworks>
4-
<LangVersion>10.0</LangVersion>
3+
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
4+
<LangVersion>11.0</LangVersion>
55

66
<Nullable>enable</Nullable>
77
<ImplicitUsings>enable</ImplicitUsings>

DotNet.Extensions.Require/DotNet.Extensions.Require.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<Description>☑ Require Expressions - A pre-condition checks library 📦 for .Net via extensions methods on types.</Description>
66
<PackageTags>preconditions;require;guard;code-contracts;argument-checks;extension-methods</PackageTags>
77

8-
<Version>1.2.0</Version>
8+
<Version>1.3.0</Version>
99
<Authors>Andrej Dyck</Authors>
1010

1111
<PackageReadmeFile>README.md</PackageReadmeFile>

0 commit comments

Comments
 (0)