MSBuild task that copies the just-built plugin binaries to the Artemis plugin directory. Useful for instantly debugging the plugins without cluttering the project file.
<ItemGroup>
<PackageReference Include="Artemis.Plugins.BuildTask" Version="1.3.0" />
</ItemGroup>
By default, the task will run if the build is done in Visual Studio or JetBrains Rider. This behaviour can be overriden in the csproj file with :
<PropertyGroup>
<EnablePluginCopy Condition="$(SomeUsefulProperty)">true</EnablePluginCopy>
</PropertyGroup>
or via the dotnet command line interface:
dotnet build -p:EnablePluginCopy=true