|
364 | 364 | <ReturnType>System.Collections.Specialized.StringCollection</ReturnType> |
365 | 365 | </ReturnValue> |
366 | 366 | <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> |
369 | 369 | <remarks> |
370 | 370 | <format type="text/markdown"><![CDATA[ |
371 | 371 | |
372 | 372 | ## 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. |
374 | 374 | |
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>. |
376 | 376 | |
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. |
378 | 378 | |
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. |
382 | 380 | |
383 | 381 | ## Examples |
384 | 382 | 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 | 613 | <ReturnType>System.Collections.Specialized.StringCollection</ReturnType> |
616 | 614 | </ReturnValue> |
617 | 615 | <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> |
620 | 618 | <remarks> |
621 | 619 | <format type="text/markdown"><![CDATA[ |
622 | 620 | |
623 | 621 | ## 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. |
625 | 623 | |
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>. |
627 | 625 | |
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. |
629 | 627 | |
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. |
633 | 629 | |
634 | 630 | ## Examples |
635 | 631 | 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. |
|
0 commit comments