Skip to content

Commit 55a41a3

Browse files
authored
.NET Framework -> .NET for System.C* (#5030)
1 parent 75dc20e commit 55a41a3

26 files changed

+75
-89
lines changed

xml/System.CodeDom.Compiler/CompilerParameters.xml

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -364,21 +364,19 @@
364364
<ReturnType>System.Collections.Specialized.StringCollection</ReturnType>
365365
</ReturnValue>
366366
<Docs>
367-
<summary>Gets the .NET Framework resource files to include when compiling the assembly output.</summary>
368-
<value>A collection that contains the file paths of .NET Framework resources to include in the generated assembly.</value>
367+
<summary>Gets the .NET resource files to include when compiling the assembly output.</summary>
368+
<value>A collection that contains the file paths of .NET resources to include in the generated assembly.</value>
369369
<remarks>
370370
<format type="text/markdown"><![CDATA[
371371
372372
## Remarks
373-
Embedded resources are built into the generated assembly output file. Including files through this property is similar to the `/resource` command-line argument supported by many of the .NET Framework compilers.
373+
Embedded resources are built into the generated assembly output file. Including files through this property is similar to the `/resource` command-line argument supported by many of the .NET compilers.
374374
375-
Not all compilers support .NET Framework resource files, so you should test for this support by calling the <xref:System.CodeDom.Compiler.ICodeGenerator.Supports%2A> method with the flag <xref:System.CodeDom.Compiler.GeneratorSupport.Resources>.
375+
Not all compilers support .NET resource files, so you should test for this support by calling the <xref:System.CodeDom.Compiler.ICodeGenerator.Supports%2A> method with the flag <xref:System.CodeDom.Compiler.GeneratorSupport.Resources>.
376376
377-
Add one or more .NET Framework resource file paths to the returned <xref:System.Collections.Specialized.StringCollection> to embed the file resources in the compiled assembly. Adding a duplicate or invalid file path results in compilation errors; ensure that each string specifies a unique path to a valid .NET Framework resource file.
377+
Add one or more .NET resource file paths to the returned <xref:System.Collections.Specialized.StringCollection> to embed the file resources in the compiled assembly. Adding a duplicate or invalid file path results in compilation errors; ensure that each string specifies a unique path to a valid .NET resource file.
378378
379-
Use <xref:System.CodeDom.Compiler.CompilerParameters.EmbeddedResources%2A> to include default or neutral culture .NET Framework resources for an assembly; use the <xref:System.CodeDom.Compiler.CompilerParameters.LinkedResources%2A> property to reference .NET Framework resources in satellite assemblies.
380-
381-
379+
Use <xref:System.CodeDom.Compiler.CompilerParameters.EmbeddedResources%2A> to include default or neutral culture .NET resources for an assembly; use the <xref:System.CodeDom.Compiler.CompilerParameters.LinkedResources%2A> property to reference .NET resources in satellite assemblies.
382380
383381
## Examples
384382
The following example illustrates using <xref:System.CodeDom.Compiler.CompilerParameters> to specify various compiler settings and options. This code example is part of a larger example provided for the <xref:System.CodeDom.Compiler.CompilerParameters> class.
@@ -615,21 +613,19 @@
615613
<ReturnType>System.Collections.Specialized.StringCollection</ReturnType>
616614
</ReturnValue>
617615
<Docs>
618-
<summary>Gets the .NET Framework resource files that are referenced in the current source.</summary>
619-
<value>A collection that contains the file paths of .NET Framework resources that are referenced by the source.</value>
616+
<summary>Gets the .NET resource files that are referenced in the current source.</summary>
617+
<value>A collection that contains the file paths of .NET resources that are referenced by the source.</value>
620618
<remarks>
621619
<format type="text/markdown"><![CDATA[
622620
623621
## Remarks
624-
Linked resource files allow your assembly to reference .NET Framework resources without embedding the actual resources in the assembly. Referencing files through this property is similar to the `/linkresource` command-line argument supported by many of the .NET Framework compilers.
622+
Linked resource files allow your assembly to reference .NET resources without embedding the actual resources in the assembly. Referencing files through this property is similar to the `/linkresource` command-line argument supported by many of the .NET compilers.
625623
626-
Not all compilers support .NET Framework resource files, so you should test for this support by calling the <xref:System.CodeDom.Compiler.ICodeGenerator.Supports%2A> method with the flag <xref:System.CodeDom.Compiler.GeneratorSupport.Resources>.
624+
Not all compilers support .NET resource files, so you should test for this support by calling the <xref:System.CodeDom.Compiler.ICodeGenerator.Supports%2A> method with the flag <xref:System.CodeDom.Compiler.GeneratorSupport.Resources>.
627625
628-
Add one or more .NET Framework resource file paths to the returned <xref:System.Collections.Specialized.StringCollection> to create links for the resources in the compiled assembly. Adding a duplicate or invalid file path results in compilation errors; ensure that each string specifies a unique path to a valid .NET Framework resource file.
626+
Add one or more .NET resource file paths to the returned <xref:System.Collections.Specialized.StringCollection> to create links for the resources in the compiled assembly. Adding a duplicate or invalid file path results in compilation errors; ensure that each string specifies a unique path to a valid .NET resource file.
629627
630-
Use <xref:System.CodeDom.Compiler.CompilerParameters.LinkedResources%2A> to reference .NET Framework resources in satellite assemblies, localized for a particular culture; use the <xref:System.CodeDom.Compiler.CompilerParameters.EmbeddedResources%2A> property to embed the resources into the compiled assembly.
631-
632-
628+
Use <xref:System.CodeDom.Compiler.CompilerParameters.LinkedResources%2A> to reference .NET resources in satellite assemblies, localized for a particular culture; use the <xref:System.CodeDom.Compiler.CompilerParameters.EmbeddedResources%2A> property to embed the resources into the compiled assembly.
633629
634630
## Examples
635631
The following example illustrates using <xref:System.CodeDom.Compiler.CompilerParameters> to specify various compiler settings and options. This code example is part of a larger example provided for the <xref:System.CodeDom.Compiler.CompilerParameters> class.

xml/System.CodeDom.Compiler/GeneratorSupport.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@
709709
</ReturnValue>
710710
<MemberValue>2097152</MemberValue>
711711
<Docs>
712-
<summary>Indicates the generator supports compilation with .NET Framework resources. These can be default resources compiled directly into an assembly, or resources referenced in a satellite assembly.</summary>
712+
<summary>Indicates the generator supports compilation with .NET resources. These can be default resources compiled directly into an assembly, or resources referenced in a satellite assembly.</summary>
713713
</Docs>
714714
</Member>
715715
<Member MemberName="ReturnTypeAttributes">

xml/System.ComponentModel.DataAnnotations/EnumDataTypeAttribute.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,14 +33,12 @@
3333
</Attribute>
3434
</Attributes>
3535
<Docs>
36-
<summary>Enables a .NET Framework enumeration to be mapped to a data column.</summary>
36+
<summary>Enables a .NET enumeration to be mapped to a data column.</summary>
3737
<remarks>
3838
<format type="text/markdown"><![CDATA[
3939
4040
## Remarks
41-
This class lets you map the underlying value in a column to a corresponding enumeration constant name. This lets you define an enumeration that contains descriptive values that correspond to database values, and then use the enumeration constant names instead of the database values when data is displayed.
42-
43-
41+
This class lets you map the underlying value in a column to a corresponding enumeration constant name. This lets you define an enumeration that contains descriptive values that correspond to database values, and then use the enumeration constant names instead of the database values when data is displayed.
4442
4543
## Examples
4644
The following example shows how to replace the numeric value of an enumeration with the corresponding declaration.

xml/System.ComponentModel.Design.Serialization/CodeDomSerializerBase.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,8 @@
274274
<Docs>
275275
<param name="manager">The serialization manager.</param>
276276
<param name="type">The target type.</param>
277-
<summary>Gets a collection of attributes as defined in the project's target version of the .NET Framework.</summary>
278-
<returns>A collection of attributes as defined in the project's target version of the .NET Framework.</returns>
277+
<summary>Gets a collection of attributes as defined in the project's target version of .NET.</summary>
278+
<returns>A collection of attributes as defined in the project's target version of .NET.</returns>
279279
<remarks>To be added.</remarks>
280280
</Docs>
281281
</Member>
@@ -306,8 +306,8 @@
306306
<Docs>
307307
<param name="manager">The serialization manager.</param>
308308
<param name="instance">An object of the target type.</param>
309-
<summary>Gets a collection of attributes as defined in the project's target version of the .NET Framework.</summary>
310-
<returns>A collection of attributes as defined in the project's target version of the .NET Framework.</returns>
309+
<summary>Gets a collection of attributes as defined in the project's target version of .NET.</summary>
310+
<returns>A collection of attributes as defined in the project's target version of .NET.</returns>
311311
<remarks>To be added.</remarks>
312312
</Docs>
313313
</Member>
@@ -339,9 +339,9 @@
339339
<Docs>
340340
<param name="manager">The serialization manager.</param>
341341
<param name="instance">An object of the target type.</param>
342-
<param name="attributes">An array of attributes to pass to the target version of the .NET Framework.</param>
343-
<summary>Gets a collection of events as defined in the project's target version of the .NET Framework.</summary>
344-
<returns>A collection of events as defined in the project's target version of the .NET Framework.</returns>
342+
<param name="attributes">An array of attributes to pass to the target version of .NET.</param>
343+
<summary>Gets a collection of events as defined in the project's target version of .NET.</summary>
344+
<returns>A collection of events as defined in the project's target version of .NET.</returns>
345345
<remarks>To be added.</remarks>
346346
</Docs>
347347
</Member>
@@ -428,9 +428,9 @@
428428
<Docs>
429429
<param name="manager">The serialization manager.</param>
430430
<param name="instance">An object of the target type.</param>
431-
<param name="attributes">An array of attributes to pass to the target version of the .NET Framework.</param>
432-
<summary>Gets a collection of properties as defined in the project's target version of the .NET Framework.</summary>
433-
<returns>A collection of properties as defined in the project's target version of the .NET Framework.</returns>
431+
<param name="attributes">An array of attributes to pass to the target version of .NET.</param>
432+
<summary>Gets a collection of properties as defined in the project's target version of .NET.</summary>
433+
<returns>A collection of properties as defined in the project's target version of .NET.</returns>
434434
<remarks>To be added.</remarks>
435435
</Docs>
436436
</Member>
@@ -636,8 +636,8 @@
636636
<Docs>
637637
<param name="provider">The type description provider service.</param>
638638
<param name="instance">An object from which the type description provider service can be derived, if <paramref name="provider" /> is <see langword="null" />.</param>
639-
<summary>Gets a <see cref="T:System.ComponentModel.TypeDescriptionProvider" /> that is aware of the target version of the .NET Framework, for use in type filtering.</summary>
640-
<returns>A .NET Framework-aware type description provider.</returns>
639+
<summary>Gets a <see cref="T:System.ComponentModel.TypeDescriptionProvider" /> that is aware of the target version of .NET, for use in type filtering.</summary>
640+
<returns>A .NET-aware type description provider.</returns>
641641
<remarks>To be added.</remarks>
642642
</Docs>
643643
</Member>

xml/System.Configuration.Assemblies/AssemblyVersionCompatibility.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
</Attribute>
4343
</Attributes>
4444
<Docs>
45-
<summary>Defines the different types of assembly version compatibility. This feature is not available in version 1.0 of the .NET Framework.</summary>
45+
<summary>Defines the different types of assembly version compatibility.</summary>
4646
<remarks>
4747
<format type="text/markdown"><![CDATA[
4848

xml/System.Configuration.Internal/DelegatingConfigHost.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -702,7 +702,7 @@
702702
</ReturnValue>
703703
<Parameters />
704704
<Docs>
705-
<summary>Instructs the host to impersonate and returns an <see cref="T:System.IDisposable" /> object required internally by the .NET Framework.</summary>
705+
<summary>Instructs the host to impersonate and returns an <see cref="T:System.IDisposable" /> object required internally by .NET.</summary>
706706
<returns>An <see cref="T:System.IDisposable" /> value.</returns>
707707
<remarks>To be added.</remarks>
708708
<forInternalUseOnly />

xml/System.Configuration.Internal/IConfigErrorInfo.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</AssemblyInfo>
2121
<Interfaces />
2222
<Docs>
23-
<summary>Defines an interface used by the .NET Framework to support creating error configuration records.</summary>
23+
<summary>Defines an interface used by .NET to support creating error configuration records.</summary>
2424
<remarks>To be added.</remarks>
2525
<forInternalUseOnly />
2626
<altmember cref="T:System.Configuration.ConfigurationErrorsException" />

xml/System.Configuration.Internal/IConfigSystem.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</AssemblyInfo>
2121
<Interfaces />
2222
<Docs>
23-
<summary>Defines an interface used by the .NET Framework to support the initialization of configuration properties.</summary>
23+
<summary>Defines an interface used by .NET to support the initialization of configuration properties.</summary>
2424
<remarks>To be added.</remarks>
2525
<forInternalUseOnly />
2626
</Docs>
@@ -51,7 +51,7 @@
5151
</ReturnValue>
5252
<Docs>
5353
<summary>Gets the configuration host.</summary>
54-
<value>An <see cref="T:System.Configuration.Internal.IInternalConfigHost" /> object that is used by the .NET Framework to initialize application configuration properties.</value>
54+
<value>An <see cref="T:System.Configuration.Internal.IInternalConfigHost" /> object that is used by .NET to initialize application configuration properties.</value>
5555
<remarks>To be added.</remarks>
5656
<forInternalUseOnly />
5757
</Docs>

xml/System.Configuration.Internal/IConfigurationManagerHelper.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</Attribute>
2727
</Attributes>
2828
<Docs>
29-
<summary>Defines an interface used by the .NET Framework to support configuration management.</summary>
29+
<summary>Defines an interface used by .NET to support configuration management.</summary>
3030
<remarks>To be added.</remarks>
3131
<forInternalUseOnly />
3232
</Docs>

xml/System.Configuration.Internal/IConfigurationManagerInternal.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</Attribute>
2727
</Attributes>
2828
<Docs>
29-
<summary>Defines an interface used by the .NET Framework to initialize configuration properties.</summary>
29+
<summary>Defines an interface used by .NET to initialize configuration properties.</summary>
3030
<remarks>To be added.</remarks>
3131
<forInternalUseOnly />
3232
</Docs>

0 commit comments

Comments
 (0)