Merge pull request #1319 from dotnet/fixDescriptorExamples

Fix root descriptor examples
This commit is contained in:
Sven Boemer 2018-03-31 20:58:55 -07:00 committed by GitHub
commit e755cfd90f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,7 +44,7 @@ For example, the xml file might be used to root an entire assembly:
```xml
<linker>
<assembly fullname="AssemblyToRoot.dll" />
<assembly fullname="AssemblyToRoot" />
</linker>
```
@ -52,7 +52,7 @@ or just a specific type within the assembly:
```xml
<linker>
<assembly fullname="AssemblyName.dll">
<assembly fullname="AssemblyName">
<type fullname="Type.To.Root" />
</assembly>
</linker>