Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Add the following entries to the project's csproj file to mark the project as part of a plugin . This will (IsPluginComponent=true). The PluginName property is used to indicate which plugin this project is part of. For deployment, all output binaries and resources from the different projects belonging to the same plugin are copied to a single directory, based on this PluginName property.

Code Block
xml
xml
titleTestProject.csproj
<?xml version="1.0" encoding="utf-8"?>
<Project ...  > 
...
  <PropertyGroup>
    ...
    <IsPluginComponent>true</IsPluginComponent>
    <PluginName>$(ProjectName)<<PluginName>TestPlugin</PluginName>
    <UsePostSharp>true</UsePostSharp> <!-- OPTIONAL -->
  </PropertyGroup>
</Project> 

...