mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-08 03:27:04 +09:00
parent
e3a4db9d53
commit
2747f30e53
1 changed files with 2 additions and 2 deletions
|
@ -21,9 +21,9 @@ These steps can also be applied to some unique assemblies which depend on change
|
|||
For implementation assemblies that are "full facades" over another assembly but define types in the reference assembly (ex. System.Runtime.Serialization.Json or System.Xml.XDocument), use the following command to generate the reference source code instead:
|
||||
|
||||
```
|
||||
dotnet msbuild /t:GenerateReferenceAssemblySource /p:GenAPIAdditionalParameters=--follow-type-forwards
|
||||
dotnet msbuild /t:GenerateReferenceAssemblySource /p:GenAPIFollowTypeForwards=true
|
||||
```
|
||||
|
||||
## For .NETFramework Facade Assemblies
|
||||
|
||||
Some assemblies define types in .NETStandard and .NETCore but require facades on .NETFramework to forward types to their existing location in .NETFramework. In these cases we need to add type forwards manually to the .NETFramework build of the reference assembly. TypeForwards must be added for every type in the compatible .NETStandard reference assembly that exists in the .NETFramework, types which are defined in the .NETFramework reference should be factored into a shared source file.
|
||||
Some assemblies define types in .NETStandard and .NETCore but require facades on .NETFramework to forward types to their existing location in .NETFramework. In these cases we need to add type forwards manually to the .NETFramework build of the reference assembly. TypeForwards must be added for every type in the compatible .NETStandard reference assembly that exists in the .NETFramework, types which are defined in the .NETFramework reference should be factored into a shared source file.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue