chore: add custom targets file for plugin defaults

This commit is contained in:
goat 2023-03-06 20:31:37 +01:00
parent 46d6f7f2ec
commit e0d4e60aad
No known key found for this signature in database
GPG key ID: 49E2AA8C6A76498B
4 changed files with 69 additions and 0 deletions

View file

@ -178,4 +178,9 @@
<!-- writes the attribute to the customAssemblyInfo file -->
<WriteCodeFragment Language="C#" OutputFile="$(CustomAssemblyInfoFile)" AssemblyAttributes="@(AssemblyAttributes)" />
</Target>
<!-- Copy plugin .targets folder into distrib -->
<Target Name="CopyPluginTargets" AfterTargets="Build">
<Copy SourceFiles="$(ProjectDir)\..\targets\Dalamud.Plugin.targets;$(ProjectDir)\..\targets\Dalamud.Plugin.Bootstrap.targets" DestinationFolder="$(OutDir)\targets" />
</Target>
</Project>