Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
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
Next Next commit
Update to ASP.NET Core 7 preview 2
Update to ASP.NET Core 7 preview 2.
  • Loading branch information
martincostello committed Mar 15, 2022
commit 1a1433cdadfa343ea4bfd5f5abc72c5e45bf9895
6 changes: 3 additions & 3 deletions Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
<PackageReference Update="JetBrains.Annotations" Version="2021.3.0" />
<PackageReference Update="JustEat.HttpClientInterception" Version="3.1.1" />
<PackageReference Update="MartinCostello.Logging.XUnit" Version="0.2.0" />
<PackageReference Update="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.0-preview.1.22109.13" />
<PackageReference Update="Microsoft.AspNetCore.TestHost" Version="7.0.0-preview.1.22109.13" />
<PackageReference Update="Microsoft.AspNetCore.Mvc.Testing" Version="7.0.0-preview.2.22153.2" />
<PackageReference Update="Microsoft.AspNetCore.TestHost" Version="7.0.0-preview.2.22153.2" />
<PackageReference Update="Microsoft.IdentityModel.Protocols" Version="6.10.0" />
<PackageReference Update="Shouldly" Version="3.0.2" />
<PackageReference Update="System.Text.Json" Version="7.0.0-preview.1.22076.8" />
<PackageReference Update="System.Text.Json" Version="7.0.0-preview.2.22152.2" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<VersionPrefix>$(MajorVersion).$(MinorVersion).$(PatchVersion)</VersionPrefix>
<PackageValidationBaselineVersion>7.0.0</PackageValidationBaselineVersion>
<PreReleaseVersionLabel>preview</PreReleaseVersionLabel>
<PreReleaseVersionIteration>1</PreReleaseVersionIteration>
<PreReleaseVersionIteration>2</PreReleaseVersionIteration>
<PreReleaseBrandingLabel>Preview $(PreReleaseVersionIteration)</PreReleaseBrandingLabel>
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>
<DotNetFinalVersionKind Condition="'$(StabilizePackageVersion)' == 'true'">release</DotNetFinalVersionKind>
Expand Down
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"sdk": {
"version": "7.0.100-preview.1.22110.4"
"version": "7.0.100-preview.2.22153.17"
},

"tools": {
"dotnet": "7.0.100-preview.1.22110.4"
"dotnet": "7.0.100-preview.2.22153.17"
},

"msbuild-sdks": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public OpenIdAuthenticationInitializer([NotNull] IDataProtectionProvider dataPro
/// </summary>
/// <param name="name">The authentication scheme associated with the handler instance.</param>
/// <param name="options">The options instance to initialize.</param>
public void PostConfigure([NotNull] string name, [NotNull] TOptions options)
public void PostConfigure([NotNull] string? name, [NotNull] TOptions options)
{
ArgumentNullException.ThrowIfNull(options);

Expand Down