Artemis-RGB / Artemis.Plugins.BuildTask

MSBuild task that copies Artemis plugins to the correct directory

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Artemis.Plugins.BuildTask

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.

Usage

<ItemGroup>
    <PackageReference Include="Artemis.Plugins.BuildTask" Version="1.3.0" />
</ItemGroup>

Configuration

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

About

MSBuild task that copies Artemis plugins to the correct directory


Languages

Language:C# 100.0%