PalacePal/Pal.Client/DalamudPackager.targets

22 lines
799 B
Plaintext
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<Project>
2023-03-26 13:47:18 +00:00
<Target Name="PackagePlugin" AfterTargets="Build" Condition="'$(Configuration)' == 'Debug'">
<DalamudPackager
ProjectDir="$(ProjectDir)"
OutputPath="$(OutputPath)"
AssemblyName="$(AssemblyName)"
MakeZip="false"
VersionComponents="2"/>
</Target>
2023-03-26 13:47:18 +00:00
<Target Name="PackagePlugin" AfterTargets="Build" Condition="'$(Configuration)' == 'Release'">
<DalamudPackager
ProjectDir="$(ProjectDir)"
OutputPath="$(OutputPath)"
AssemblyName="$(AssemblyName)"
MakeZip="true"
VersionComponents="2"
Exclude="ECommons.pdb;ECommons.xml"/>
</Target>
2023-02-16 19:40:32 +00:00
</Project>