Skip to content

Commit

Permalink
Update .NET SDK to 8.0.100-preview.5.23303.2 (#441)
Browse files Browse the repository at this point in the history
* Update .NET SDK

Update .NET SDK to version 8.0.100-preview.5.23303.2.

---
updated-dependencies:
- dependency-name: Microsoft.NET.Sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: costellobot <[email protected]>

* Bump Microsoft.AspNetCore.Mvc.Testing from 8.0.0-preview.4.23260.4 to 8.0.0-preview.5.23302.2

Bumps Microsoft.AspNetCore.Mvc.Testing from 8.0.0-preview.4.23260.4 to 8.0.0-preview.5.23302.2.

---
updated-dependencies:
- dependency-name: Microsoft.AspNetCore.Mvc.Testing
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: costellobot <[email protected]>

* Suppress CA1861

Suppress CA1861 warnings in sample application.

* Suppress CA1861

Suppress CA1861 warnings in the tests.

---------

Signed-off-by: costellobot <[email protected]>
Co-authored-by: Martin Costello <[email protected]>
  • Loading branch information
costellobot and martincostello committed Jun 14, 2023
1 parent c67bf45 commit 44753eb
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<ItemGroup>
<PackageVersion Include="coverlet.msbuild" Version="6.0.0" />
<PackageVersion Include="GitHubActionsTestLogger" Version="2.3.2" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0-preview.4.23260.4" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.0-preview.5.23302.2" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.6.2" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="1.1.1" />
<PackageVersion Include="Moq" Version="4.18.4" />
Expand Down
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "8.0.100-preview.4.23260.5",
"version": "8.0.100-preview.5.23303.2",
"allowPrerelease": false,
"rollForward": "latestMajor"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Description>Tests for MartinCostello.Logging.XUnit.</Description>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
<NoWarn>$(NoWarn);CA1062;CA1707;CA1711;CA2007;CA2234;SA1600;SA1602</NoWarn>
<NoWarn>$(NoWarn);CA1062;CA1707;CA1711;CA1861;CA2007;CA2234;SA1600;SA1602</NoWarn>
<PreserveCompilationContext>true</PreserveCompilationContext>
<RootNamespace>MartinCostello.Logging.XUnit</RootNamespace>
<Summary>$(Description)</Summary>
Expand Down
2 changes: 1 addition & 1 deletion tests/SampleApp/SampleApp.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<IsPackable>false</IsPackable>
<NoWarn>$(NoWarn);CA1801;CA1822;SA1600</NoWarn>
<NoWarn>$(NoWarn);CA1801;CA1822;CA1861;SA1600</NoWarn>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>
</Project>

0 comments on commit 44753eb

Please sign in to comment.