@@ -313,21 +313,14 @@ Optionally, you can specify the `Kind` metadata for a specific `EmbeddedResource
313313treated as a text file:
314314
315315``` xml
316+ <ItemGroup >
316317 <EmbeddedResource Include =" query.kql" Kind =" Text" />
318+ </ItemGroup >
317319```
318320
319321You can also add a ` Comment ` item metadata attribute, which will be used as the ` <summary> ` XML
320322doc for the generated member.
321323
322- ## Customizing the generated code
323-
324- The following MSBuild properties can be used to customize the generated code:
325-
326- | Property | Description |
327- | -------------------------| ------------------------------------------------------------------------------------------------------|
328- | ThisAssemblyNamespace | Sets the namespace of the generated ` ThisAssembly ` root class. If not set, it will be in the global namespace. |
329- | ThisAssemblyVisibility | Sets the visibility modifier of the generated ` ThisAssembly ` root class. If not set, it will be internal. |
330-
331324## Adding dynamic resources
332325
333326You can also provide additional embedded resources dynamically, by running a target before
@@ -341,6 +334,15 @@ You can also provide additional embedded resources dynamically, by running a tar
341334 </Target >
342335```
343336
337+ ## Customizing the generated code
338+
339+ The following MSBuild properties can be used to customize the generated code:
340+
341+ | Property | Description |
342+ | -------------------------| ------------------------------------------------------------------------------------------------------|
343+ | ThisAssemblyNamespace | Sets the namespace of the generated ` ThisAssembly ` root class. If not set, it will be in the global namespace. |
344+ | ThisAssemblyVisibility | Sets the visibility modifier of the generated ` ThisAssembly ` root class. If not set, it will be internal. |
345+
344346<!-- #resources -->
345347<!-- src/ThisAssembly.Resources/readme.md#resources -->
346348
0 commit comments