tom-englert / JetBrainsAnnotations.Fody

Converts all JetBrains ReSharper code annotation attributes to External Annotations, so you can provide R# annotations to 3rd parties but don't need to deploy JetBrainsAnnotations.dll.
MIT License
39 stars 6 forks source link

Added ability to use custom assembly containing embedded R# annotations #8

Open jpeirson opened 6 years ago

jpeirson commented 6 years ago

Simply modify the FodyWeavers.xml file with a couple of attributes to enable this behavior, e.g.:

<Weavers>
  <JetBrainsAnnotations assembly="MyInternalResharperAnnotations" remove="true"/>
</Weavers>

See also updated section in README.md.

jpeirson commented 6 years ago

Fixed issue with using wrong Config element, for modifying own assembly.