@@ -313,21 +313,14 @@ Optionally, you can specify the `Kind` metadata for a specific `EmbeddedResource
313
313
treated as a text file:
314
314
315
315
``` xml
316
+ <ItemGroup >
316
317
<EmbeddedResource Include =" query.kql" Kind =" Text" />
318
+ </ItemGroup >
317
319
```
318
320
319
321
You can also add a ` Comment ` item metadata attribute, which will be used as the ` <summary> ` XML
320
322
doc for the generated member.
321
323
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
-
331
324
## Adding dynamic resources
332
325
333
326
You 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
341
334
</Target >
342
335
```
343
336
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
+
344
346
<!-- #resources -->
345
347
<!-- src/ThisAssembly.Resources/readme.md#resources -->
346
348
0 commit comments