-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #556 from SteveDunn/net8
Net8
- Loading branch information
Showing
4,736 changed files
with
1,530,834 additions
and
114 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ jobs: | |
- uses: actions/[email protected] | ||
with: | ||
dotnet-version: | | ||
8.0.x | ||
7.0.x | ||
6.0.x | ||
5.0.x | ||
|
@@ -30,6 +31,7 @@ jobs: | |
- uses: actions/[email protected] | ||
with: | ||
dotnet-version: | | ||
8.0.x | ||
7.0.x | ||
6.0.x | ||
5.0.x | ||
|
@@ -45,7 +47,7 @@ jobs: | |
- uses: actions/[email protected] | ||
with: | ||
dotnet-version: | | ||
7.0.x | ||
8.0.x | ||
- name: Run Snapshots | ||
run: ./RunSnapshots.ps1 | ||
shell: pwsh | ||
|
@@ -57,6 +59,7 @@ jobs: | |
- uses: actions/[email protected] | ||
with: | ||
dotnet-version: | | ||
8.0.x | ||
7.0.x | ||
6.0.x | ||
5.0.x | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,6 +41,10 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Setup dotnet 8.0 | ||
uses: actions/[email protected] | ||
with: | ||
dotnet-version: '8.0.x' | ||
- name: Setup dotnet 7.0 | ||
uses: actions/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ jobs: | |
- uses: actions/[email protected] | ||
with: | ||
dotnet-version: | | ||
8.0.x | ||
7.0.x | ||
6.0.x | ||
5.0.x | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,98 @@ | ||
<Project> | ||
<!-- https://www.nuget.org/packages/Microsoft.CodeAnalysis.Analyzers/ --> | ||
<!-- https://www.nuget.org/packages/Microsoft.CodeAnalysis.CSharp.Workspaces/ --> | ||
<PropertyGroup> | ||
<RoslynVersion></RoslynVersion> | ||
</PropertyGroup> | ||
|
||
<Choose> | ||
<When Condition="$(RoslynVersion) == 'roslyn3.8'"> | ||
<ItemGroup > | ||
<PackageReference Update="Microsoft.CodeAnalysis.Analyzers" Version="3.3.3" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.CSharp" Version="3.8.0" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.Workspaces.Common" Version="3.8.0" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="3.8.0" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<DefineConstants>$(DefineConstants);ROSLYN_3_8</DefineConstants> | ||
<DefineConstants>$(DefineConstants);CSHARP9_OR_GREATER</DefineConstants> | ||
<NoWarn>$(NoWarn);nullable</NoWarn> | ||
</PropertyGroup> | ||
</When> | ||
|
||
<When Condition="$(RoslynVersion) == 'roslyn4.2'"> | ||
<ItemGroup> | ||
<PackageReference Update="Microsoft.CodeAnalysis.Analyzers" Version="3.3.3" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.CSharp" Version="4.2.0" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.2.0" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.2.0" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<DefineConstants>$(DefineConstants);ROSLYN_4_2;ROSLYN_4_2_OR_GREATER</DefineConstants> | ||
<DefineConstants>$(DefineConstants);CSHARP9_OR_GREATER;CSHARP10_OR_GREATER</DefineConstants> | ||
<NoWarn>$(NoWarn);nullable</NoWarn> | ||
</PropertyGroup> | ||
</When> | ||
|
||
<When Condition="$(RoslynVersion) == 'roslyn4.4'"> | ||
<ItemGroup> | ||
<PackageReference Update="Microsoft.CodeAnalysis.Analyzers" Version="3.3.3" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.CSharp" Version="4.4.0" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.4.0" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.4.0" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<DefineConstants>$(DefineConstants);ROSLYN_4_4;ROSLYN_4_2_OR_GREATER;ROSLYN_4_4_OR_GREATER</DefineConstants> | ||
<DefineConstants>$(DefineConstants);CSHARP9_OR_GREATER;CSHARP10_OR_GREATER;CSHARP11_OR_GREATER</DefineConstants> | ||
<NoWarn>$(NoWarn);nullable</NoWarn> | ||
</PropertyGroup> | ||
</When> | ||
|
||
<When Condition="$(RoslynVersion) == 'roslyn4.6'"> | ||
<ItemGroup> | ||
<PackageReference Update="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.CSharp" Version="4.6.0" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.6.0" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.6.0" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<DefineConstants>$(DefineConstants);ROSLYN_4_6;ROSLYN_4_2_OR_GREATER;ROSLYN_4_4_OR_GREATER;ROSLYN_4_6_OR_GREATER</DefineConstants> | ||
<DefineConstants>$(DefineConstants);CSHARP9_OR_GREATER;CSHARP10_OR_GREATER;CSHARP11_OR_GREATER</DefineConstants> | ||
<NoWarn>$(NoWarn);nullable</NoWarn> | ||
</PropertyGroup> | ||
</When> | ||
|
||
<When Condition="$(RoslynVersion) == 'roslyn4.8'"> | ||
<ItemGroup> | ||
<PackageReference Update="Microsoft.CodeAnalysis.Analyzers" Version="3.3.4" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.8.0" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.8.0" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<DefineConstants>$(DefineConstants);ROSLYN_4_8;ROSLYN_4_2_OR_GREATER;ROSLYN_4_4_OR_GREATER;ROSLYN_4_6_OR_GREATER;ROSLYN_4_8_OR_GREATER</DefineConstants> | ||
<DefineConstants>$(DefineConstants);CSHARP9_OR_GREATER;CSHARP10_OR_GREATER;CSHARP11_OR_GREATER;CSHARP12_OR_GREATER</DefineConstants> | ||
<NoWarn>$(NoWarn);nullable</NoWarn> | ||
</PropertyGroup> | ||
</When> | ||
|
||
<Otherwise> | ||
<ItemGroup> | ||
<PackageReference Update="Microsoft.CodeAnalysis.Analyzers" Version="3.11.0-beta1.23525.2" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.CSharp" Version="4.8.0" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.Workspaces.Common" Version="4.8.0" /> | ||
<PackageReference Update="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="4.8.0" /> | ||
</ItemGroup> | ||
<PropertyGroup> | ||
<DefineConstants>$(DefineConstants);ROSLYN4_8;ROSLYN_4_2_OR_GREATER;ROSLYN_4_4_OR_GREATER;ROSLYN_4_5_OR_GREATER;ROSLYN_4_6_OR_GREATER;ROSLYN_4_8_OR_GREATER</DefineConstants> | ||
<DefineConstants>$(DefineConstants);CSHARP9_OR_GREATER;CSHARP10_OR_GREATER;CSHARP11_OR_GREATER;CSHARP12_OR_GREATER</DefineConstants> | ||
<NoWarn>$(NoWarn);CS0618</NoWarn> | ||
</PropertyGroup> | ||
</Otherwise> | ||
</Choose> | ||
|
||
<!-- disable the nullable warnings when compiling for .NET Standard 2.0 --> | ||
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard2.0' OR '$(TargetFramework)' == 'net462'"> | ||
<NoWarn>$(NoWarn);nullable</NoWarn> | ||
</PropertyGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"sdk": { | ||
"version": "7.0.0", | ||
"rollForward": "latestMinor", | ||
"version": "8.0.100", | ||
"rollForward": "latestMajor", | ||
"allowPrerelease": false | ||
} | ||
} |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.