Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
969f48c
Update to ASP.NET Core 8 preview 3
martincostello Apr 16, 2023
be51cdf
Merge branch 'dev' into dev-v8
martincostello May 16, 2023
b3634b8
Remove TODO
martincostello May 16, 2023
f75002c
Update to ASP.NET Core 8 preview 4
martincostello May 16, 2023
40bfea3
Update to ASP.NET Core 8 preview 5
martincostello Jun 14, 2023
e389e7d
Update exception types (#784)
martincostello Jun 15, 2023
c7eb754
Merge branch 'dev' into dev-v8
martincostello Jun 19, 2023
4cd4ee7
Update to ASP.NET Core 8 preview 6
martincostello Jul 11, 2023
61e4165
Merge branch 'dev' into dev-v8
martincostello Aug 7, 2023
1a20061
Update to ASP.NET Core 8 preview 7
martincostello Aug 8, 2023
d86e1d5
Merge branch 'dev' into dev-v8
martincostello Aug 15, 2023
8b25479
Fix JumpCloud for .NET 8
martincostello Aug 15, 2023
872582c
Merge branch 'dev' into dev-v8
martincostello Aug 17, 2023
d9b218d
Update to ASP.NET Core 8 RC 1 (#801)
martincostello Sep 12, 2023
54962db
Remove obsolete members
martincostello Oct 1, 2023
3246aad
Use C# 12 features (#806)
martincostello Oct 2, 2023
5b940db
Use collection literals
martincostello Oct 2, 2023
837fa59
Update arcade (#805)
martincostello Oct 4, 2023
bdc6fbd
Update to ASP.NET Core 8 RC 2 (#810)
martincostello Oct 10, 2023
681afa0
Bump Microsoft.IdentityModel.Protocols.OpenIdConnect
martincostello Oct 17, 2023
492d96b
Bump JetBrains.Annotations
martincostello Nov 9, 2023
cedd813
AoT support
martincostello Nov 9, 2023
e46b08b
Fix flaky test
martincostello Nov 9, 2023
515ada5
Fix duplicated query parameters for VSO/AzDo (#814)
martincostello Nov 12, 2023
8dfccb3
Use unified BattleNet server (#813)
martincostello Nov 14, 2023
5b8528d
Update to .NET 8.0 RTM
martincostello Nov 14, 2023
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
Prev Previous commit
Update to .NET 8.0 RTM
Update to stable .NET 8 SDK and NuGet packages.
  • Loading branch information
martincostello committed Nov 14, 2023
commit 5b8528d67379369612a419b72ae8863a6079c916
6 changes: 3 additions & 3 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<PackageVersion Include="JetBrains.Annotations" Version="2023.3.0" />
<PackageVersion Include="JustEat.HttpClientInterception" Version="4.0.0" />
<PackageVersion Include="MartinCostello.Logging.XUnit" Version="0.3.0" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Google" Version="8.0.0-rc.2.23480.2" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0-rc.2.23480.2" />
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="8.0.0-rc.2.23480.2" />
<PackageVersion Include="Microsoft.AspNetCore.Authentication.Google" Version="8.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0" />
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="8.0.0" />
<PackageVersion Include="Microsoft.IdentityModel.Protocols.OpenIdConnect" Version="7.0.3" />
<PackageVersion Include="NSubstitute" Version="5.1.0" />
<PackageVersion Include="Shouldly" Version="4.2.1" />
Expand Down
6 changes: 3 additions & 3 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
TODO Change to 8.0.0 post-release
-->
<PackageValidationBaselineVersion Condition="'$(PackageValidationBaselineVersion)' == ''">7.0.0</PackageValidationBaselineVersion>
<PreReleaseVersionLabel>rc</PreReleaseVersionLabel>
<PreReleaseVersionIteration>2</PreReleaseVersionIteration>
<PreReleaseBrandingLabel>Release Candidate $(PreReleaseVersionIteration)</PreReleaseBrandingLabel>
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
<PreReleaseVersionIteration></PreReleaseVersionIteration>
<PreReleaseBrandingLabel>Preview $(PreReleaseVersionIteration)</PreReleaseBrandingLabel>
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>
<DotNetFinalVersionKind Condition="'$(StabilizePackageVersion)' == 'true'">release</DotNetFinalVersionKind>
<IncludePreReleaseLabelInPackageVersion>true</IncludePreReleaseLabelInPackageVersion>
Expand Down
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"sdk": {
"version": "8.0.100-rc.2.23502.2",
"version": "8.0.100",
"allowPrerelease": true,
"rollForward": "major"
},

"tools": {
"dotnet": "8.0.100-rc.2.23502.2"
"dotnet": "8.0.100"
},

"msbuild-sdks": {
Expand Down