Skip to content

Commit dd0b1f3

Browse files
authored
CI Update (#8903)
1 parent ee37ca2 commit dd0b1f3

File tree

60 files changed

+3410
-148
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+3410
-148
lines changed

xml/FrameworksIndex/dotnet-plat-ext-8.0.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1626,9 +1626,11 @@
16261626
</Type>
16271627
<Type Name="Microsoft.Extensions.Hosting.Host" Id="T:Microsoft.Extensions.Hosting.Host">
16281628
<Member Id="M:Microsoft.Extensions.Hosting.Host.CreateApplicationBuilder" />
1629+
<Member Id="M:Microsoft.Extensions.Hosting.Host.CreateApplicationBuilder(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings)" />
16291630
<Member Id="M:Microsoft.Extensions.Hosting.Host.CreateApplicationBuilder(System.String[])" />
16301631
<Member Id="M:Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder" />
16311632
<Member Id="M:Microsoft.Extensions.Hosting.Host.CreateDefaultBuilder(System.String[])" />
1633+
<Member Id="M:Microsoft.Extensions.Hosting.Host.CreateEmptyApplicationBuilder(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings)" />
16321634
</Type>
16331635
<Type Name="Microsoft.Extensions.Hosting.HostAbortedException" Id="T:Microsoft.Extensions.Hosting.HostAbortedException">
16341636
<Member Id="M:Microsoft.Extensions.Hosting.HostAbortedException.#ctor" />
@@ -2326,6 +2328,9 @@
23262328
<Member Id="M:Microsoft.Extensions.ObjectPool.IPooledObjectPolicy`1.Create" />
23272329
<Member Id="M:Microsoft.Extensions.ObjectPool.IPooledObjectPolicy`1.Return(`0)" />
23282330
</Type>
2331+
<Type Name="Microsoft.Extensions.ObjectPool.IResettable" Id="T:Microsoft.Extensions.ObjectPool.IResettable">
2332+
<Member Id="M:Microsoft.Extensions.ObjectPool.IResettable.TryReset" />
2333+
</Type>
23292334
<Type Name="Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool`1" Id="T:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool`1">
23302335
<Member Id="M:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool`1.#ctor(Microsoft.Extensions.ObjectPool.ObjectPool{`0})" />
23312336
<Member Id="M:Microsoft.Extensions.ObjectPool.LeakTrackingObjectPool`1.Get" />

xml/FrameworksIndex/net-8.0.xml

Lines changed: 106 additions & 0 deletions
Large diffs are not rendered by default.

xml/Microsoft.Extensions.Hosting/Host.xml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,31 @@
5353
<list type="bullet"><item><description>Set the <see cref="P:Microsoft.Extensions.Hosting.IHostEnvironment.ContentRootPath" /> to the result of <see cref="M:System.IO.Directory.GetCurrentDirectory" />.</description></item><item><description>Load host <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> from "DOTNET_" prefixed environment variables.</description></item><item><description>Load host <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> from supplied command line arguments.</description></item><item><description>Load app <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> from 'appsettings.json' and 'appsettings.[<see cref="P:Microsoft.Extensions.Hosting.IHostEnvironment.EnvironmentName" />].json'.</description></item><item><description>Load app <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> from User Secrets when <see cref="P:Microsoft.Extensions.Hosting.IHostEnvironment.EnvironmentName" /> is 'Development' using the entry assembly.</description></item><item><description>Load app <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> from environment variables.</description></item><item><description>Load app <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> from supplied command line arguments.</description></item><item><description>Configure the <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory" /> to log to the console, debug, and event source output.</description></item><item><description>Enable scope validation on the dependency injection container when <see cref="P:Microsoft.Extensions.Hosting.IHostEnvironment.EnvironmentName" /> is 'Development'.</description></item></list></remarks>
5454
</Docs>
5555
</Member>
56+
<Member MemberName="CreateApplicationBuilder">
57+
<MemberSignature Language="C#" Value="public static Microsoft.Extensions.Hosting.HostApplicationBuilder CreateApplicationBuilder (Microsoft.Extensions.Hosting.HostApplicationBuilderSettings? settings);" />
58+
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Microsoft.Extensions.Hosting.HostApplicationBuilder CreateApplicationBuilder(class Microsoft.Extensions.Hosting.HostApplicationBuilderSettings settings) cil managed" />
59+
<MemberSignature Language="DocId" Value="M:Microsoft.Extensions.Hosting.Host.CreateApplicationBuilder(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings)" />
60+
<MemberSignature Language="VB.NET" Value="Public Shared Function CreateApplicationBuilder (settings As HostApplicationBuilderSettings) As HostApplicationBuilder" />
61+
<MemberSignature Language="F#" Value="static member CreateApplicationBuilder : Microsoft.Extensions.Hosting.HostApplicationBuilderSettings -&gt; Microsoft.Extensions.Hosting.HostApplicationBuilder" Usage="Microsoft.Extensions.Hosting.Host.CreateApplicationBuilder settings" />
62+
<MemberSignature Language="C++ CLI" Value="public:&#xA; static Microsoft::Extensions::Hosting::HostApplicationBuilder ^ CreateApplicationBuilder(Microsoft::Extensions::Hosting::HostApplicationBuilderSettings ^ settings);" />
63+
<MemberType>Method</MemberType>
64+
<AssemblyInfo>
65+
<AssemblyName>Microsoft.Extensions.Hosting</AssemblyName>
66+
<AssemblyVersion>8.0.0.0</AssemblyVersion>
67+
</AssemblyInfo>
68+
<ReturnValue>
69+
<ReturnType>Microsoft.Extensions.Hosting.HostApplicationBuilder</ReturnType>
70+
</ReturnValue>
71+
<Parameters>
72+
<Parameter Name="settings" Type="Microsoft.Extensions.Hosting.HostApplicationBuilderSettings" Index="0" FrameworkAlternate="dotnet-plat-ext-8.0" />
73+
</Parameters>
74+
<Docs>
75+
<param name="settings">To be added.</param>
76+
<summary>To be added.</summary>
77+
<returns>To be added.</returns>
78+
<remarks>To be added.</remarks>
79+
</Docs>
80+
</Member>
5681
<Member MemberName="CreateApplicationBuilder">
5782
<MemberSignature Language="C#" Value="public static Microsoft.Extensions.Hosting.HostApplicationBuilder CreateApplicationBuilder (string[]? args);" />
5883
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Microsoft.Extensions.Hosting.HostApplicationBuilder CreateApplicationBuilder(string[] args) cil managed" />
@@ -159,5 +184,30 @@ The following defaults are applied to the returned <see cref="T:Microsoft.Extens
159184
<list type="bullet"><item><description>Set the <see cref="P:Microsoft.Extensions.Hosting.IHostEnvironment.ContentRootPath" /> to the result of <see cref="M:System.IO.Directory.GetCurrentDirectory" />.</description></item><item><description>Load host <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> from "DOTNET_" prefixed environment variables.</description></item><item><description>Load host <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> from supplied command line arguments.</description></item><item><description>Load app <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> from 'appsettings.json' and 'appsettings.[<see cref="P:Microsoft.Extensions.Hosting.IHostEnvironment.EnvironmentName" />].json'.</description></item><item><description>Load app <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> from User Secrets when <see cref="P:Microsoft.Extensions.Hosting.IHostEnvironment.EnvironmentName" /> is 'Development' using the entry assembly.</description></item><item><description>Load app <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> from environment variables.</description></item><item><description>Load app <see cref="T:Microsoft.Extensions.Configuration.IConfiguration" /> from supplied command line arguments.</description></item><item><description>Configure the <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory" /> to log to the console, debug, and event source output.</description></item><item><description>Enable scope validation on the dependency injection container when <see cref="P:Microsoft.Extensions.Hosting.IHostEnvironment.EnvironmentName" /> is 'Development'.</description></item></list></remarks>
160185
</Docs>
161186
</Member>
187+
<Member MemberName="CreateEmptyApplicationBuilder">
188+
<MemberSignature Language="C#" Value="public static Microsoft.Extensions.Hosting.HostApplicationBuilder CreateEmptyApplicationBuilder (Microsoft.Extensions.Hosting.HostApplicationBuilderSettings? settings);" />
189+
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Microsoft.Extensions.Hosting.HostApplicationBuilder CreateEmptyApplicationBuilder(class Microsoft.Extensions.Hosting.HostApplicationBuilderSettings settings) cil managed" />
190+
<MemberSignature Language="DocId" Value="M:Microsoft.Extensions.Hosting.Host.CreateEmptyApplicationBuilder(Microsoft.Extensions.Hosting.HostApplicationBuilderSettings)" />
191+
<MemberSignature Language="VB.NET" Value="Public Shared Function CreateEmptyApplicationBuilder (settings As HostApplicationBuilderSettings) As HostApplicationBuilder" />
192+
<MemberSignature Language="F#" Value="static member CreateEmptyApplicationBuilder : Microsoft.Extensions.Hosting.HostApplicationBuilderSettings -&gt; Microsoft.Extensions.Hosting.HostApplicationBuilder" Usage="Microsoft.Extensions.Hosting.Host.CreateEmptyApplicationBuilder settings" />
193+
<MemberSignature Language="C++ CLI" Value="public:&#xA; static Microsoft::Extensions::Hosting::HostApplicationBuilder ^ CreateEmptyApplicationBuilder(Microsoft::Extensions::Hosting::HostApplicationBuilderSettings ^ settings);" />
194+
<MemberType>Method</MemberType>
195+
<AssemblyInfo>
196+
<AssemblyName>Microsoft.Extensions.Hosting</AssemblyName>
197+
<AssemblyVersion>8.0.0.0</AssemblyVersion>
198+
</AssemblyInfo>
199+
<ReturnValue>
200+
<ReturnType>Microsoft.Extensions.Hosting.HostApplicationBuilder</ReturnType>
201+
</ReturnValue>
202+
<Parameters>
203+
<Parameter Name="settings" Type="Microsoft.Extensions.Hosting.HostApplicationBuilderSettings" Index="0" FrameworkAlternate="dotnet-plat-ext-8.0" />
204+
</Parameters>
205+
<Docs>
206+
<param name="settings">To be added.</param>
207+
<summary>To be added.</summary>
208+
<returns>To be added.</returns>
209+
<remarks>To be added.</remarks>
210+
</Docs>
211+
</Member>
162212
</Members>
163213
</Type>

xml/Microsoft.Extensions.Logging/ConsoleLoggerExtensions.xml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -90,18 +90,14 @@
9090
<AssemblyVersion>8.0.0.0</AssemblyVersion>
9191
</AssemblyInfo>
9292
<Attributes>
93-
<Attribute FrameworkAlternate="dotnet-plat-ext-6.0;dotnet-plat-ext-7.0;dotnet-plat-ext-8.0">
93+
<Attribute FrameworkAlternate="dotnet-plat-ext-6.0;dotnet-plat-ext-7.0">
9494
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessage("ReflectionAnalysis", "IL2026:RequiresUnreferencedCode", Justification="AddConsoleFormatter and RegisterProviderOptions are only dangerous when the Options type cannot be statically analyzed, but that is not the case here. The DynamicallyAccessedMembers annotations on them will make sure to preserve the right members from the different options objects.")]</AttributeName>
9595
<AttributeName Language="F#">[&lt;System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessage("ReflectionAnalysis", "IL2026:RequiresUnreferencedCode", Justification="AddConsoleFormatter and RegisterProviderOptions are only dangerous when the Options type cannot be statically analyzed, but that is not the case here. The DynamicallyAccessedMembers annotations on them will make sure to preserve the right members from the different options objects.")&gt;]</AttributeName>
9696
</Attribute>
97-
<Attribute FrameworkAlternate="dotnet-plat-ext-7.0;dotnet-plat-ext-8.0">
97+
<Attribute FrameworkAlternate="dotnet-plat-ext-7.0">
9898
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessage("AotAnalysis", "IL3050:RequiresDynamicCode", Justification="AddConsoleFormatter and RegisterProviderOptions are only called with Options types which only have simple properties.")]</AttributeName>
9999
<AttributeName Language="F#">[&lt;System.Diagnostics.CodeAnalysis.UnconditionalSuppressMessage("AotAnalysis", "IL3050:RequiresDynamicCode", Justification="AddConsoleFormatter and RegisterProviderOptions are only called with Options types which only have simple properties.")&gt;]</AttributeName>
100100
</Attribute>
101-
<Attribute FrameworkAlternate="dotnet-plat-ext-8.0">
102-
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.DynamicDependency(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.All, typeof(System.Text.Json.JsonWriterOptions))]</AttributeName>
103-
<AttributeName Language="F#">[&lt;System.Diagnostics.CodeAnalysis.DynamicDependency(System.Diagnostics.CodeAnalysis.DynamicallyAccessedMemberTypes.All, typeof(System.Text.Json.JsonWriterOptions))&gt;]</AttributeName>
104-
</Attribute>
105101
</Attributes>
106102
<ReturnValue>
107103
<ReturnType>Microsoft.Extensions.Logging.ILoggingBuilder</ReturnType>
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<Type Name="IResettable" FullName="Microsoft.Extensions.ObjectPool.IResettable">
2+
<TypeSignature Language="C#" Value="public interface IResettable" />
3+
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract IResettable" />
4+
<TypeSignature Language="DocId" Value="T:Microsoft.Extensions.ObjectPool.IResettable" />
5+
<TypeSignature Language="VB.NET" Value="Public Interface IResettable" />
6+
<TypeSignature Language="F#" Value="type IResettable = interface" />
7+
<TypeSignature Language="C++ CLI" Value="public interface class IResettable" />
8+
<AssemblyInfo>
9+
<AssemblyName>Microsoft.Extensions.ObjectPool</AssemblyName>
10+
<AssemblyVersion>8.0.0.0</AssemblyVersion>
11+
</AssemblyInfo>
12+
<Interfaces />
13+
<Docs>
14+
<summary>To be added.</summary>
15+
<remarks>To be added.</remarks>
16+
</Docs>
17+
<Members>
18+
<Member MemberName="TryReset">
19+
<MemberSignature Language="C#" Value="public bool TryReset ();" />
20+
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool TryReset() cil managed" />
21+
<MemberSignature Language="DocId" Value="M:Microsoft.Extensions.ObjectPool.IResettable.TryReset" />
22+
<MemberSignature Language="VB.NET" Value="Public Function TryReset () As Boolean" />
23+
<MemberSignature Language="F#" Value="abstract member TryReset : unit -&gt; bool" Usage="iResettable.TryReset " />
24+
<MemberSignature Language="C++ CLI" Value="public:&#xA; bool TryReset();" />
25+
<MemberType>Method</MemberType>
26+
<AssemblyInfo>
27+
<AssemblyName>Microsoft.Extensions.ObjectPool</AssemblyName>
28+
<AssemblyVersion>8.0.0.0</AssemblyVersion>
29+
</AssemblyInfo>
30+
<ReturnValue>
31+
<ReturnType>System.Boolean</ReturnType>
32+
</ReturnValue>
33+
<Parameters />
34+
<Docs>
35+
<summary>To be added.</summary>
36+
<returns>To be added.</returns>
37+
<remarks>To be added.</remarks>
38+
</Docs>
39+
</Member>
40+
</Members>
41+
</Type>

0 commit comments

Comments
 (0)