Skip to content

Commit

Permalink
Update .NET SDK to 10.0.100-alpha.1.25067.4 (#59853)
Browse files Browse the repository at this point in the history
* Update .NET SDK

Update .NET SDK to version 10.0.100-alpha.1.25063.8.

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

Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>

* Suppress CP1002 temporarily via NoWarn

The NoWarn can be removed when dotnet/sdk#46059 got merged and consumed with a new .NET SDK.

* Remove NoWarns completely

* Update SDK and dotnet tool versions

* Update SDK and tools version in global.json

* NoWarn CP1002 for MessagePack project

---------

Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Viktor Hofer <[email protected]>
  • Loading branch information
3 people authored Jan 17, 2025
1 parent dd9550a commit 87070ed
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 87 deletions.
4 changes: 2 additions & 2 deletions global.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"sdk": {
"version": "10.0.100-alpha.1.25056.1"
"version": "10.0.100-alpha.1.25067.4"
},
"tools": {
"dotnet": "10.0.100-alpha.1.25056.1",
"dotnet": "10.0.100-alpha.1.25067.4",
"runtimes": {
"dotnet/x86": [
"$(MicrosoftInternalRuntimeAspNetCoreTransportVersion)"
Expand Down
11 changes: 0 additions & 11 deletions src/Caching/SqlServer/src/CompatibilitySuppressions.xml

This file was deleted.

This file was deleted.

11 changes: 0 additions & 11 deletions src/DataProtection/Extensions/src/CompatibilitySuppressions.xml

This file was deleted.

This file was deleted.

11 changes: 0 additions & 11 deletions src/Features/JsonPatch/src/CompatibilitySuppressions.xml

This file was deleted.

8 changes: 0 additions & 8 deletions src/FileProviders/Embedded/src/CompatibilitySuppressions.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<Suppressions xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Suppression>
<DiagnosticId>CP1002</DiagnosticId>
<Target>SMDiagnostics.dll</Target>
</Suppression>
<Suppression>
<DiagnosticId>CP1002</DiagnosticId>
<Target>System.ServiceModel.Internals.dll</Target>
</Suppression>
<Suppression>
<DiagnosticId>CP1003</DiagnosticId>
<Target>lib/net7.0/Microsoft.Extensions.FileProviders.Embedded.dll</Target>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@
<RootNamespace>Microsoft.AspNetCore.SignalR</RootNamespace>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
<!-- Avoid a warning that is emitted by APICompat when it can't find Microsoft.NET.StringTools.dll
which is a dependency of MessagePack.dll but is excluded from "compile" in the package's nuspec. -->
<NoWarn>$(NoWarn);CP1002</NoWarn>
</PropertyGroup>

<ItemGroup>
Expand Down

This file was deleted.

0 comments on commit 87070ed

Please sign in to comment.