Skip to content

Commit

Permalink
Update .NET SDK to 7.0.302 (#563)
Browse files Browse the repository at this point in the history
* Update .NET SDK

Update .NET SDK to version 7.0.302.

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

Signed-off-by: jet-codeflow-maintainer[bot] <131594757+jet-codeflow-maintainer[bot]@users.noreply.github.com>

* Bump Microsoft.NET.Test.Sdk from 17.5.0 to 17.6.0

Bumps Microsoft.NET.Test.Sdk from 17.5.0 to 17.6.0.

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

Signed-off-by: jet-codeflow-maintainer[bot] <131594757+jet-codeflow-maintainer[bot]@users.noreply.github.com>

* Suppress CA1852

Suppress false-positive for `CA1852` reintroduced by the .NET 7.0.302 SDK.

---------

Signed-off-by: jet-codeflow-maintainer[bot] <131594757+jet-codeflow-maintainer[bot]@users.noreply.github.com>
Co-authored-by: jet-codeflow-maintainer[bot] <131594757+jet-codeflow-maintainer[bot]@users.noreply.github.com>
Co-authored-by: Martin Costello <martin@martincostello.com>
  • Loading branch information
1 parent 6786efd commit e81dc20
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "7.0.203",
"version": "7.0.302",
"allowPrerelease": false,
"rollForward": "latestMajor"
}
Expand Down
2 changes: 2 additions & 0 deletions samples/SampleApp/Program.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright (c) Just Eat, 2017. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.

#pragma warning disable CA1852

using SampleApp.Extensions;
using SampleApp.Services;

Expand Down
2 changes: 1 addition & 1 deletion tests/HttpClientInterception.Benchmarks/Program.cs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Copyright (c) Just Eat, 2017. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.

#pragma warning disable CA1812
#pragma warning disable CA1852

using BenchmarkDotNet.Running;
using JustEat.HttpClientInterception;
Expand Down

0 comments on commit e81dc20

Please sign in to comment.