You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
634 B
13 lines
634 B
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
<PropertyGroup> |
|
<PrepareForRunDependsOn>$(PrepareForRunDependsOn);MyPostBuildTarget</PrepareForRunDependsOn> |
|
</PropertyGroup> |
|
<ItemGroup> |
|
<MyCopyItem Include="$(MSBuildProjectDirectory)\*.addin" /> |
|
</ItemGroup> |
|
<Target Name="MyPostBuildTarget"> |
|
<!-- work around an MSBuild bug in CopyToOutputDirectory that causes this file to be copied --> |
|
<!-- to projects referencing this project even if local copy on that reference is false --> |
|
<Copy SourceFiles="@(MyCopyItem)" DestinationFolder="$(OutputPath)" /> |
|
</Target> |
|
</Project>
|
|
|