Skip to content

Commit

Permalink
Add support for .Net 7
Browse files Browse the repository at this point in the history
  • Loading branch information
andrej-dyck committed Nov 11, 2022
1 parent 5e2c4bf commit e115ebd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
uses: actions/setup-dotnet@v2
with:
dotnet-version: |
7.0.x
6.0.x
- name: Restore dependencies
run: dotnet restore
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
uses: actions/setup-dotnet@v2
with:
dotnet-version: |
7.0.x
6.0.x
- name: Build Release
run: dotnet build -c Release
Expand Down
4 changes: 2 additions & 2 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<LangVersion>10.0</LangVersion>
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
<LangVersion>11.0</LangVersion>

<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down
2 changes: 1 addition & 1 deletion DotNet.Extensions.Require/DotNet.Extensions.Require.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<Description>☑ Require Expressions - A pre-condition checks library 📦 for .Net via extensions methods on types.</Description>
<PackageTags>preconditions;require;guard;code-contracts;argument-checks;extension-methods</PackageTags>

<Version>1.2.0</Version>
<Version>1.3.0</Version>
<Authors>Andrej Dyck</Authors>

<PackageReadmeFile>README.md</PackageReadmeFile>
Expand Down

0 comments on commit e115ebd

Please sign in to comment.