8 lines
314 B
XML
8 lines
314 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<Project>
|
|
<Target Name="CopyToPlugins" AfterTargets="Build" Condition="'$(CI)'!='TRUE'">
|
|
<Copy SourceFiles="$(TargetPath)" DestinationFiles="$(PluginsPath)\$(ProjectName)\$(TargetFileName)" />
|
|
<Message Text="Copied to Plugins" Importance="high"/>
|
|
</Target>
|
|
</Project>
|