Skip to content

Commit

Permalink
Merge pull request #7 from zcsizmadia/net7-release
Browse files Browse the repository at this point in the history
NET 7 release
  • Loading branch information
zcsizmadia authored Nov 8, 2022
2 parents 781729c + 6869a1d commit d54756d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/dotnet-codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,11 @@ jobs:

# Install .NET SDKs
- name: Install .NET SDKs
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3.0.3
with:
dotnet-version: |
6.0.x
7.0.x
include-prerelease: true
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
uses: actions/setup-dotnet@v3.0.3
with:
dotnet-version: |
6.0.x
7.0.x
include-prerelease: true
- name: Install dependencies
run: dotnet restore
Expand Down
1 change: 1 addition & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@

<!-- By default none of the projects are packable by "dotnet pack". Packable projects must set it to true! -->
<IsPackable>false</IsPackable>
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
</PropertyGroup>

<ItemGroup>
Expand Down
10 changes: 5 additions & 5 deletions Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
<!-- Run "dotnet list package (dash,dash)outdated" to see the latest versions of each package.-->

<PropertyGroup Label="Package Dependencies">
<SystemTextJsonVersion Condition="'$(SystemTextJsonVersion)' == ''">7.0.0-rc.*</SystemTextJsonVersion>
<SystemTextJsonVersion Condition="'$(SystemTextJsonVersion)' == ''">7.0.0</SystemTextJsonVersion>
</PropertyGroup>

<PropertyGroup Label="Build Dependencies">
<CoverletCollectorVersion Condition="'$(CoverletCollectorVersion)' == ''">3.1.*</CoverletCollectorVersion>
<MicrosoftNETTestSdkVersion Condition="'$(MicrosoftNETTestSdkVersion)' == ''">17.3.*</MicrosoftNETTestSdkVersion>
<CoverletCollectorVersion Condition="'$(CoverletCollectorVersion)' == ''">3.2.*</CoverletCollectorVersion>
<MicrosoftNETTestSdkVersion Condition="'$(MicrosoftNETTestSdkVersion)' == ''">17.4.*</MicrosoftNETTestSdkVersion>
<NUnitVersion Condition="'$(NUnitVersion)' == ''">3.13.*</NUnitVersion>
<NUnit3TestAdapterVersion Condition="'$(NUnit3TestAdapterVersion)' == ''">4.2.*</NUnit3TestAdapterVersion>
<NUnitAnalyzersVersion Condition="'$(NUnitAnalyzersVersion)' == ''">3.3.*</NUnitAnalyzersVersion>
<NUnit3TestAdapterVersion Condition="'$(NUnit3TestAdapterVersion)' == ''">4.3.*</NUnit3TestAdapterVersion>
<NUnitAnalyzersVersion Condition="'$(NUnitAnalyzersVersion)' == ''">3.5.*</NUnitAnalyzersVersion>
</PropertyGroup>
</Project>
1 change: 1 addition & 0 deletions sample/WeatherForecastWebApi/WeatherForecastWebApi.csproj
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>$(SampleTargetFramework)</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
Expand Down

0 comments on commit d54756d

Please sign in to comment.