Skip to content

Commit

Permalink
Bump the .NET dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinchalet committed Oct 4, 2024
1 parent 090f45d commit d4bfc6d
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 4 deletions.
1 change: 1 addition & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<NoWarn>$(NoWarn);CS1591;NU5128</NoWarn>
<WarningsNotAsErrors>NU1901;NU1902;NU1903;NU1904</WarningsNotAsErrors>
<NuGetAuditMode>direct</NuGetAuditMode>
<DebugSymbols>true</DebugSymbols>
<EnableXlfLocalization>false</EnableXlfLocalization>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<PackageVersion Include="Microsoft.Owin.Hosting" Version="4.2.2" />
<PackageVersion Include="Microsoft.Owin.Security.Cookies" Version="4.2.2" />
<PackageVersion Include="Microsoft.Owin.Security.OAuth" Version="4.2.2" />
<PackageVersion Include="Microsoft.Web.Infrastructure" Version="1.0.0" />
<PackageVersion Include="Microsoft.Web.Infrastructure" Version="2.0.0" />
<PackageVersion Include="OpenIddict.Client.SystemIntegration" Version="5.8.0" />
<PackageVersion Include="OpenIddict.Client.SystemNetHttp" Version="5.8.0" />
<PackageVersion Include="OpenIddict.EntityFramework" Version="5.8.0" />
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.303",
"version": "8.0.402",
"allowPrerelease": true,
"rollForward": "major"
},

"tools": {
"dotnet": "8.0.303"
"dotnet": "8.0.402"
},

"msbuild-sdks": {
Expand Down
2 changes: 1 addition & 1 deletion samples/Fornax/Fornax.Server/Fornax.Server.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<VSToolsPath>$(RepoRoot)eng\msbuild\web</VSToolsPath>
<MvcBuildViews>false</MvcBuildViews>
<ImplicitUsings>disable</ImplicitUsings>
<NoWarn>CA3147</NoWarn>
<NoWarn>CA3147;NU1605</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down
6 changes: 6 additions & 0 deletions samples/Fornax/Fornax.Server/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,12 @@
<bindingRedirect oldVersion="0.0.0.0-4.1.4.0" newVersion="4.1.4.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<system.codedom>
<compilers>
Expand Down
6 changes: 6 additions & 0 deletions samples/Mortis/Mortis.Client/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,12 @@
<bindingRedirect oldVersion="0.0.0.0-4.1.4.0" newVersion="4.1.4.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<system.codedom>
<compilers>
Expand Down
6 changes: 6 additions & 0 deletions samples/Mortis/Mortis.Server/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,12 @@
<bindingRedirect oldVersion="0.0.0.0-4.1.4.0" newVersion="4.1.4.0" />
</dependentAssembly>
</assemblyBinding>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.Web.Infrastructure" publicKeyToken="31bf3856ad364e35" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-2.0.0.0" newVersion="2.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
<entityFramework>
<providers>
Expand Down

0 comments on commit d4bfc6d

Please sign in to comment.