Skip to content

Commit 86af02a

Browse files
Merge pull request #48492 from dotnet/main
Merge main into live
2 parents 83521b7 + fc48880 commit 86af02a

File tree

2 files changed

+12
-7
lines changed

2 files changed

+12
-7
lines changed

docs/azure/includes/dotnet-all.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -424,18 +424,19 @@
424424
| Unknown Display Name | NuGet [1.1.2-preview](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.AzureCosmosDb.Mongo/1.1.2-preview) | | |
425425
| Unknown Display Name | NuGet [1.46.0](https://www.nuget.org/packages/Microsoft.CognitiveServices.Speech.Extension.MAS/1.46.0) | | |
426426
| Unknown Display Name | NuGet [1.0.0](https://www.nuget.org/packages/Microsoft.Extensions.Caching.Postgres/1.0.0) | | |
427-
| Unknown Display Name | NuGet [0.0.11](https://www.nuget.org/packages/Microsoft.Template.Mcp.linux-arm64/0.0.11) | | |
428-
| Unknown Display Name | NuGet [0.0.11](https://www.nuget.org/packages/Microsoft.Template.Mcp.linux-x64/0.0.11) | | |
429-
| Unknown Display Name | NuGet [0.0.11](https://www.nuget.org/packages/Microsoft.Template.Mcp.osx-arm64/0.0.11) | | |
430-
| Unknown Display Name | NuGet [0.0.11](https://www.nuget.org/packages/Microsoft.Template.Mcp.osx-x64/0.0.11) | | |
427+
| Unknown Display Name | NuGet [0.0.12](https://www.nuget.org/packages/Microsoft.Template.Mcp/0.0.12) | | |
428+
| Unknown Display Name | NuGet [0.0.12](https://www.nuget.org/packages/Microsoft.Template.Mcp.linux-arm64/0.0.12) | | |
429+
| Unknown Display Name | NuGet [0.0.12](https://www.nuget.org/packages/Microsoft.Template.Mcp.linux-x64/0.0.12) | | |
430+
| Unknown Display Name | NuGet [0.0.12](https://www.nuget.org/packages/Microsoft.Template.Mcp.osx-arm64/0.0.12) | | |
431+
| Unknown Display Name | NuGet [0.0.12](https://www.nuget.org/packages/Microsoft.Template.Mcp.osx-x64/0.0.12) | | |
431432
| Unknown Display Name | NuGet [0.0.9](https://www.nuget.org/packages/Microsoft.Template.Mcp.Server.linux-arm64/0.0.9) | | |
432433
| Unknown Display Name | NuGet [0.0.9](https://www.nuget.org/packages/Microsoft.Template.Mcp.Server.linux-x64/0.0.9) | | |
433434
| Unknown Display Name | NuGet [0.0.9](https://www.nuget.org/packages/Microsoft.Template.Mcp.Server.osx-arm64/0.0.9) | | |
434435
| Unknown Display Name | NuGet [0.0.9](https://www.nuget.org/packages/Microsoft.Template.Mcp.Server.osx-x64/0.0.9) | | |
435436
| Unknown Display Name | NuGet [0.0.9](https://www.nuget.org/packages/Microsoft.Template.Mcp.Server.win-arm64/0.0.9) | | |
436437
| Unknown Display Name | NuGet [0.0.9](https://www.nuget.org/packages/Microsoft.Template.Mcp.Server.win-x64/0.0.9) | | |
437-
| Unknown Display Name | NuGet [0.0.11](https://www.nuget.org/packages/Microsoft.Template.Mcp.win-arm64/0.0.11) | | |
438-
| Unknown Display Name | NuGet [0.0.11](https://www.nuget.org/packages/Microsoft.Template.Mcp.win-x64/0.0.11) | | |
438+
| Unknown Display Name | NuGet [0.0.12](https://www.nuget.org/packages/Microsoft.Template.Mcp.win-arm64/0.0.12) | | |
439+
| Unknown Display Name | NuGet [0.0.12](https://www.nuget.org/packages/Microsoft.Template.Mcp.win-x64/0.0.12) | | |
439440
| WebJobs Extension MySQL | NuGet [1.0.129](https://www.nuget.org/packages/Microsoft.Azure.WebJobs.Extensions.MySql/1.0.129) | | |
440441
| Anomaly Detector | NuGet [1.0.0](https://www.nuget.org/packages/Microsoft.Azure.CognitiveServices.AnomalyDetector/1.0.0) | | GitHub [1.0.0](https://github.com/Azure/azure-sdk-for-net/tree/Microsoft.Azure.CognitiveServices.AnomalyDetector_1.0.0-preview.1/sdk/cognitiveservices/AnomalyDetector) |
441442
| App Service | NuGet [0.2.2-alpha](https://www.nuget.org/packages/Microsoft.Azure.AppService/0.2.2-alpha) | | |

docs/core/compatibility/sdk/8.0/custombuildeventargs.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,11 @@ Previously, you could derive from any subclass of <xref:Microsoft.Build.Framewor
1515

1616
Starting in .NET 8, a build error is issued if your code uses any type derived from <xref:Microsoft.Build.Framework.BuildEventArgs> and you build using the .NET 8 version of MSBuild, that is, from the command line:
1717

18-
> Usage of unsecure BinaryFormatter during serialization of custom event type 'MyCustomBuildEventArgs'. This will be deprecated soon. Please use Extended*EventArgs instead. More info: <https://aka.ms/msbuild/eventargs>
18+
> Usage of unsecure BinaryFormatter during serialization of custom event type 'MyCustomBuildEventArgs'. This will be deprecated soon. Please use Extended*EventArgs instead. More info: <https://aka.ms/msbuild/eventargs>.
19+
20+
In .NET 10, the error message was changed to:
21+
22+
> Custom event type 'MyCustomBuildEventArgs' is not supported as all custom event types were deprecated. Please use Extended*EventArgs instead. More info: <https://aka.ms/msbuild/eventargs>.
1923
2024
Starting from Visual Studio version 17.10, the same behavior applies to builds in Visual Studio.
2125

0 commit comments

Comments
 (0)