Skip to content

Commit 75cd0d2

Browse files
PranavSenthilnathanjamesmontemagnoericstj
authored
API Diff .NET 10.0 RC2 -> 10.0 GA (#10148)
* API Diff .NET 10.0 RC2 -> 10.0 GA * Fix formatting for markdown linter * Update release-notes/10.0/preview/ga/api-diff/Microsoft.WindowsDesktop.App/10.0-ga.md Co-authored-by: Eric StJohn <[email protected]> --------- Co-authored-by: James Montemagno <[email protected]> Co-authored-by: Eric StJohn <[email protected]>
1 parent 712e32b commit 75cd0d2

File tree

10 files changed

+122
-0
lines changed

10 files changed

+122
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# API difference between .NET 10.0 RC 2 and .NET 10.0 GA
2+
3+
API listing follows standard diff formatting.
4+
Lines preceded by a '+' are additions and a '-' indicates removal.
5+
6+
* [Microsoft.AspNetCore](10.0-ga_Microsoft.AspNetCore.md)
7+
* [Microsoft.AspNetCore.Hosting](10.0-ga_Microsoft.AspNetCore.Hosting.md)
8+
* [Microsoft.AspNetCore.Hosting.Abstractions](10.0-ga_Microsoft.AspNetCore.Hosting.Abstractions.md)
9+
* [Microsoft.AspNetCore.HttpOverrides](10.0-ga_Microsoft.AspNetCore.HttpOverrides.md)
10+
* [Microsoft.AspNetCore.Mvc.Core](10.0-ga_Microsoft.AspNetCore.Mvc.Core.md)
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Microsoft.AspNetCore.Hosting.Abstractions
2+
3+
```diff
4+
namespace Microsoft.AspNetCore.Hosting
5+
{
6+
- [System.ObsoleteAttribute("IWebHost is obsolete. Use IHost instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008")]
7+
+ [System.ObsoleteAttribute("IWebHost is obsolete. Use IHost instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008", UrlFormat = "https://aka.ms/aspnet/deprecate/008")]
8+
public interface IWebHost : System.IDisposable
9+
{
10+
}
11+
public interface IWebHostBuilder
12+
{
13+
- [System.ObsoleteAttribute("IWebHost is obsolete. Use IHost instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008")]
14+
+ [System.ObsoleteAttribute("IWebHost is obsolete. Use IHost instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008", UrlFormat = "https://aka.ms/aspnet/deprecate/008")]
15+
Microsoft.AspNetCore.Hosting.IWebHost Build();
16+
}
17+
}
18+
```
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Microsoft.AspNetCore.Hosting
2+
3+
```diff
4+
namespace Microsoft.AspNetCore.Hosting
5+
{
6+
- [System.ObsoleteAttribute("WebHostBuilder is deprecated in favor of HostBuilder and WebApplicationBuilder. For more information, visit https://aka.ms/aspnet/deprecate/004.", DiagnosticId = "ASPDEPR004")]
7+
+ [System.ObsoleteAttribute("WebHostBuilder is deprecated in favor of HostBuilder and WebApplicationBuilder. For more information, visit https://aka.ms/aspnet/deprecate/004.", DiagnosticId = "ASPDEPR004", UrlFormat = "https://aka.ms/aspnet/deprecate/004")]
8+
public class WebHostBuilder : Microsoft.AspNetCore.Hosting.IWebHostBuilder
9+
{
10+
}
11+
- [System.ObsoleteAttribute("WebHostExtensions is obsolete. Use Host.CreateDefaultBuilder or WebApplication.CreateBuilder instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008")]
12+
+ [System.ObsoleteAttribute("WebHostExtensions is obsolete. Use Host.CreateDefaultBuilder or WebApplication.CreateBuilder instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008", UrlFormat = "https://aka.ms/aspnet/deprecate/008")]
13+
public static class WebHostExtensions
14+
{
15+
}
16+
}
17+
```
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Microsoft.AspNetCore.HttpOverrides
2+
3+
```diff
4+
namespace Microsoft.AspNetCore.Builder
5+
{
6+
public class ForwardedHeadersOptions
7+
{
8+
- [System.ObsoleteAttribute("Please use KnownIPNetworks instead. For more information, visit https://aka.ms/aspnet/deprecate/005.", DiagnosticId = "ASPDEPR005")]
9+
+ [System.ObsoleteAttribute("Please use KnownIPNetworks instead. For more information, visit https://aka.ms/aspnet/deprecate/005.", DiagnosticId = "ASPDEPR005", UrlFormat = "https://aka.ms/aspnet/deprecate/005")]
10+
public System.Collections.Generic.IList<Microsoft.AspNetCore.HttpOverrides.IPNetwork> KnownNetworks { get; }
11+
}
12+
}
13+
namespace Microsoft.AspNetCore.HttpOverrides
14+
{
15+
- [System.ObsoleteAttribute("Please use System.Net.IPNetwork instead. For more information, visit https://aka.ms/aspnet/deprecate/005.", DiagnosticId = "ASPDEPR005")]
16+
+ [System.ObsoleteAttribute("Please use System.Net.IPNetwork instead. For more information, visit https://aka.ms/aspnet/deprecate/005.", DiagnosticId = "ASPDEPR005", UrlFormat = "https://aka.ms/aspnet/deprecate/005")]
17+
public class IPNetwork
18+
{
19+
}
20+
}
21+
```
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Microsoft.AspNetCore.Mvc.Core
2+
3+
```diff
4+
namespace Microsoft.AspNetCore.Mvc.Infrastructure
5+
{
6+
- [System.ObsoleteAttribute("ActionContextAccessor is obsolete and will be removed in a future version. For more information, visit https://aka.ms/aspnet/deprecate/006.", DiagnosticId = "ASPDEPR006")]
7+
+ [System.ObsoleteAttribute("ActionContextAccessor is obsolete and will be removed in a future version. For more information, visit https://aka.ms/aspnet/deprecate/006.", DiagnosticId = "ASPDEPR006", UrlFormat = "https://aka.ms/aspnet/deprecate/006")]
8+
public class ActionContextAccessor : Microsoft.AspNetCore.Mvc.Infrastructure.IActionContextAccessor
9+
{
10+
}
11+
- [System.ObsoleteAttribute("IActionContextAccessor is obsolete and will be removed in a future version. For more information, visit https://aka.ms/aspnet/deprecate/006.", DiagnosticId = "ASPDEPR006")]
12+
+ [System.ObsoleteAttribute("IActionContextAccessor is obsolete and will be removed in a future version. For more information, visit https://aka.ms/aspnet/deprecate/006.", DiagnosticId = "ASPDEPR006", UrlFormat = "https://aka.ms/aspnet/deprecate/006")]
13+
public interface IActionContextAccessor
14+
{
15+
}
16+
}
17+
```
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Microsoft.AspNetCore
2+
3+
```diff
4+
namespace Microsoft.AspNetCore
5+
{
6+
- [System.ObsoleteAttribute("WebHost is obsolete. Use HostBuilder or WebApplicationBuilder instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008")]
7+
+ [System.ObsoleteAttribute("WebHost is obsolete. Use HostBuilder or WebApplicationBuilder instead. For more information, visit https://aka.ms/aspnet/deprecate/008.", DiagnosticId = "ASPDEPR008", UrlFormat = "https://aka.ms/aspnet/deprecate/008")]
8+
public static class WebHost
9+
{
10+
}
11+
}
12+
```
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# API difference between .NET 10.0 RC 2 and .NET 10.0 GA
2+
3+
API listing follows standard diff formatting.
4+
Lines preceded by a '+' are additions and a '-' indicates removal.
5+
6+
* [System.Runtime.Loader](10.0-ga_System.Runtime.Loader.md)
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# System.Runtime.Loader
2+
3+
```diff
4+
namespace System.Runtime.CompilerServices
5+
{
6+
+ public sealed class MetadataUpdateDeletedAttribute : System.Attribute
7+
+ {
8+
+ public MetadataUpdateDeletedAttribute();
9+
+ }
10+
}
11+
```
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# API difference between .NET 10.0 RC 2 and .NET 10.0 GA
2+
3+
No changes
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# .NET 10.0 GA API Changes
2+
3+
The following API changes were made in .NET 10.0 GA:
4+
5+
- [Microsoft.NETCore.App](./Microsoft.NETCore.App/10.0-ga.md)
6+
- [Microsoft.AspNetCore.App](./Microsoft.AspNetCore.App/10.0-ga.md)
7+
- [Microsoft.WindowsDesktop.App](./Microsoft.WindowsDesktop.App/10.0-ga.md)

0 commit comments

Comments
 (0)