Skip to content

Commit

Permalink
+Mᐁ includes
Browse files Browse the repository at this point in the history
  • Loading branch information
devlooped-bot authored and kzu committed Nov 26, 2024
1 parent f890f3c commit 0925538
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -328,6 +328,19 @@ The following MSBuild properties can be used to customize the generated code:
| ThisAssemblyNamespace | Sets the namespace of the generated `ThisAssembly` root class. If not set, it will be in the global namespace. |
| ThisAssemblyVisibility | Sets the visibility modifier of the generated `ThisAssembly` root class. If not set, it will be internal. |

## Adding dynamic resources

You can also provide additional embedded resources dynamically, by running a target before
`PrepareEmbeddedResources`:

```xml
<Target Name="AddDynamicResources" BeforeTargets="PrepareEmbeddedResources">
<ItemGroup>
<EmbeddedResource Include="Content/Docs/$(Configuration).md" />
</ItemGroup>
</Target>
```

<!-- #resources -->
<!-- src/ThisAssembly.Resources/readme.md#resources -->

Expand Down

0 comments on commit 0925538

Please sign in to comment.