Skip to content

Commit 01e7ef8

Browse files
authored
CI Update - .NET 7 GA (#8605)
1 parent 2a6ecce commit 01e7ef8

File tree

27 files changed

+182
-55
lines changed

27 files changed

+182
-55
lines changed

xml/FrameworksIndex/net-7.0.xml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47593,8 +47593,10 @@
4759347593
<Member Id="M:System.Text.Json.Serialization.Metadata.JsonTypeInfo.CreateJsonPropertyInfo(System.Type,System.String)" />
4759447594
<Member Id="M:System.Text.Json.Serialization.Metadata.JsonTypeInfo.CreateJsonTypeInfo(System.Type,System.Text.Json.JsonSerializerOptions)" />
4759547595
<Member Id="M:System.Text.Json.Serialization.Metadata.JsonTypeInfo.CreateJsonTypeInfo``1(System.Text.Json.JsonSerializerOptions)" />
47596+
<Member Id="M:System.Text.Json.Serialization.Metadata.JsonTypeInfo.MakeReadOnly" />
4759647597
<Member Id="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Converter" />
4759747598
<Member Id="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.CreateObject" />
47599+
<Member Id="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.IsReadOnly" />
4759847600
<Member Id="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.Kind" />
4759947601
<Member Id="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.NumberHandling" />
4760047602
<Member Id="P:System.Text.Json.Serialization.Metadata.JsonTypeInfo.OnDeserialized" />
@@ -49934,6 +49936,7 @@
4993449936
<Member Id="M:System.Transactions.TransactionManager.Reenlist(System.Guid,System.Byte[],System.Transactions.IEnlistmentNotification)" />
4993549937
<Member Id="P:System.Transactions.TransactionManager.DefaultTimeout" />
4993649938
<Member Id="P:System.Transactions.TransactionManager.HostCurrentCallback" />
49939+
<Member Id="P:System.Transactions.TransactionManager.ImplicitDistributedTransactions" />
4993749940
<Member Id="P:System.Transactions.TransactionManager.MaximumTimeout" />
4993849941
</Type>
4993949942
<Type Name="System.Transactions.TransactionManagerCommunicationException" Id="T:System.Transactions.TransactionManagerCommunicationException">

xml/Microsoft.Extensions.Options/OptionsMonitor`1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@
206206
<Parameter Name="name" Type="System.String" Index="0" FrameworkAlternate="dotnet-plat-ext-2.0;dotnet-plat-ext-2.1;dotnet-plat-ext-2.2;dotnet-plat-ext-3.0;dotnet-plat-ext-3.1;dotnet-plat-ext-5.0;dotnet-plat-ext-6.0;dotnet-plat-ext-7.0" />
207207
</Parameters>
208208
<Docs>
209-
<param name="name">The name of the <typeparamref name="TOptions" /> instance, if a <see langword="null" /> <see cref="F:Microsoft.Extensions.Options.Options.DefaultName" /> is used.</param>
209+
<param name="name">The name of the <typeparamref name="TOptions" /> instance, if a <see langword="null" /><see cref="F:Microsoft.Extensions.Options.Options.DefaultName" /> is used.</param>
210210
<summary>Returns a configured <typeparamref name="TOptions" /> instance with the given <paramref name="name" />.</summary>
211211
<returns>The <typeparamref name="TOptions" /> instance that matches the given <paramref name="name" />.</returns>
212212
<remarks>To be added.</remarks>

xml/System.Data.SqlTypes/SqlMoney.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@
706706
This method creates the <xref:System.Data.SqlTypes.SqlMoney> structure object directly from the Tabular Data Stream (TDS) long value passed, without making a copy of it.
707707
708708
]]></format>
709-
</remarks>
709+
</remarks>
710710
</Docs>
711711
</Member>
712712
<Member MemberName="GetHashCode">

xml/System.Diagnostics.CodeAnalysis/UnscopedRefAttribute.xml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,12 @@
2525
<para> There are several cases where the C# compiler treats a <see langword="ref" /> as implicitly <see langword="scoped" /> - where the compiler does not allow the <see langword="ref" /> to escape the method.</para>
2626
<para> For example:</para>
2727
<ol>
28-
<li><see langword="this" /> for <see langword="struct" /> instance methods.</li>
29-
<li><see langword="ref" /> parameters that refer to <see langword="ref" /><see langword="struct" /> types.</li>
30-
<li><see langword="out" /> parameters.</li>
28+
<li>
29+
<see langword="this" /> for <see langword="struct" /> instance methods.</li>
30+
<li>
31+
<see langword="ref" /> parameters that refer to <see langword="ref" /> <see langword="struct" /> types.</li>
32+
<li>
33+
<see langword="out" /> parameters.</li>
3134
</ol>
3235
<para> This attribute is used in those instances where the <see langword="ref" /> should be allowed to escape.</para>
3336
<para> Applying this attribute, in any form, has impact on consumers of the applicable API. It is necessary for API authors to understand the lifetime implications of applying this attribute and how it may impact their users.</para>

xml/System.Globalization/CultureInfo.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3832,7 +3832,7 @@ For a list of predefined culture names and identifiers that the <xref:System.Glo
38323832
</ReturnValue>
38333833
<Docs>
38343834
<summary>Gets the ISO 639-1 two-letter or ISO 639-3 three-letter code for the language of the current <see cref="T:System.Globalization.CultureInfo" />.</summary>
3835-
<value>The ISO 639-1 two-letter code for the language of the current <see cref="T:System.Globalization.CultureInfo" />. If no two-letter code is available, the three-letter code from ISO 639-3 is used.</value>
3835+
<value>The ISO 639-1 two-letter code for the language of the current <see cref="T:System.Globalization.CultureInfo" />. If no two-letter code is available, the three-letter code from ISO 639-3 is used.</value>
38363836
<remarks>
38373837
<format type="text/markdown"><![CDATA[
38383838

xml/System.Net.Http/HttpClient.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1878,7 +1878,7 @@ The <paramref name="requestUri" /> is not an absolute URI.
18781878
<exception cref="T:System.ArgumentNullException">The <paramref name="requestUri" /> is <see langword="null" />.</exception>
18791879
<exception cref="T:System.Net.Http.HttpRequestException">The request failed due to an underlying issue such as network connectivity, DNS failure, server certificate validation (or timeout for .NET Framework only).</exception>
18801880
<exception cref="T:System.Threading.Tasks.TaskCanceledException">.NET Core and .NET 5 and later only: The request failed due to timeout.</exception>
1881-
<exception cref="T:System.UriFormatException">The provided request URI is not valid relative or absolute URI.</exception>
1881+
<exception cref="T:System.UriFormatException">The provided request URI is not valid relative or absolute URI.</exception>
18821882
</Member>
18831883
<Member MemberName="GetStreamAsync">
18841884
<MemberSignature Language="C#" Value="public System.Threading.Tasks.Task&lt;System.IO.Stream&gt; GetStreamAsync (Uri? requestUri, System.Threading.CancellationToken cancellationToken);" />

xml/System.Net.Http/HttpContent.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
</Interfaces>
3838
<Docs>
3939
<summary>A base class representing an HTTP entity body and content headers.</summary>
40-
<remarks>
40+
<remarks>
4141
<format type="text/markdown"><![CDATA[
4242
4343
## Remarks

xml/System.Net/HttpStatusCode.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
</Base>
4747
<Docs>
4848
<summary>Contains the values of status codes defined for HTTP defined in RFC 2616 for HTTP 1.1.</summary>
49+
<remarks>To be added.</remarks>
4950
</Docs>
5051
<Members>
5152
<Member MemberName="Accepted">

xml/System.Numerics/IBinaryInteger`1.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -516,7 +516,7 @@
516516
<param name="source">The span from which the two's complement number should be read.</param>
517517
<param name="isUnsigned">
518518
<see langword="true" /> if <paramref name="source" /> represents an unsigned two's complement number; otherwise, <see langword="false" /> to indicate it represents a signed two's complement number.</param>
519-
<param name="value">On return, contains the value read from <paramref name="source" /> or <see langword="default"/> if a value could not be read.</param>
519+
<param name="value">On return, contains the value read from <paramref name="source" /> or <see langword="default" /> if a value could not be read.</param>
520520
<summary>Tries to read a two's complement number from a span, in big-endian format, and convert it to an instance of the current type.</summary>
521521
<returns>
522522
<see langword="true" /> if the value was succesfully read from <paramref name="source" />; otherwise, <see langword="false" />.</returns>
@@ -547,7 +547,7 @@
547547
<param name="source">The span from which the two's complement number should be read.</param>
548548
<param name="isUnsigned">
549549
<see langword="true" /> if <paramref name="source" /> represents an unsigned two's complement number; otherwise, <see langword="false" /> to indicate it represents a signed two's complement number.</param>
550-
<param name="value">On return, contains the value read from <paramref name="source" /> or <see langword="default"/> if a value could not be read.</param>
550+
<param name="value">On return, contains the value read from <paramref name="source" /> or <see langword="default" /> if a value could not be read.</param>
551551
<summary>Tries to read a two's complement number from a span, in little-endian format, and convert it to an instance of the current type.</summary>
552552
<returns>
553553
<see langword="true" /> if the value was succesfully read from <paramref name="source" />; otherwise, <see langword="false" />.</returns>

xml/System.Numerics/INumberBase`1.xml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1278,7 +1278,14 @@ For <xref:System.Numerics.IFloatingPointIeee754%601> this method matches the IEE
12781278
<Parameter Name="s" Type="System.ReadOnlySpan&lt;System.Char&gt;" />
12791279
<Parameter Name="style" Type="System.Globalization.NumberStyles" />
12801280
<Parameter Name="provider" Type="System.IFormatProvider" />
1281-
<Parameter Name="result" Type="TSelf" RefType="out" />
1281+
<Parameter Name="result" Type="TSelf" RefType="out">
1282+
<Attributes>
1283+
<Attribute>
1284+
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)]</AttributeName>
1285+
<AttributeName Language="F#">[&lt;System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)&gt;]</AttributeName>
1286+
</Attribute>
1287+
</Attributes>
1288+
</Parameter>
12821289
</Parameters>
12831290
<Docs>
12841291
<param name="s">The span of characters to parse.</param>
@@ -1319,7 +1326,14 @@ For <xref:System.Numerics.IFloatingPointIeee754%601> this method matches the IEE
13191326
</Parameter>
13201327
<Parameter Name="style" Type="System.Globalization.NumberStyles" />
13211328
<Parameter Name="provider" Type="System.IFormatProvider" />
1322-
<Parameter Name="result" Type="TSelf" RefType="out" />
1329+
<Parameter Name="result" Type="TSelf" RefType="out">
1330+
<Attributes>
1331+
<Attribute>
1332+
<AttributeName Language="C#">[System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)]</AttributeName>
1333+
<AttributeName Language="F#">[&lt;System.Diagnostics.CodeAnalysis.MaybeNullWhen(false)&gt;]</AttributeName>
1334+
</Attribute>
1335+
</Attributes>
1336+
</Parameter>
13231337
</Parameters>
13241338
<Docs>
13251339
<param name="s">The string to parse.</param>

0 commit comments

Comments
 (0)