forked from P0L3NARUBA/roblox-2016-source-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CustomBuildRules.props
31 lines (28 loc) · 1.32 KB
/
CustomBuildRules.props
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup
Condition="'$(PublishDLLDependencyBeforeTargets)' == '' and '$(PublishDLLDependencyAfterTargets)' == '' and '$(ConfigurationType)' != 'Makefile'">
<PublishDLLDependencyBeforeTargets>Midl</PublishDLLDependencyBeforeTargets>
<PublishDLLDependencyAfterTargets>CustomBuild</PublishDLLDependencyAfterTargets>
</PropertyGroup>
<PropertyGroup>
<PublishDLLDependencyDependsOn
Condition="'$(ConfigurationType)' != 'Makefile'">_SelectedFiles;$(PublishDLLDependencyDependsOn)</PublishDLLDependencyDependsOn>
</PropertyGroup>
<!--
<ItemDefinitionGroup>
<PublishDLLDependency>
<CommandLineTemplate>copy "%(FullPath)" "$(TargetDir)"</CommandLineTemplate>
<Outputs>"$(TargetDir)%(Filename)%(Extension)"</Outputs>
<ExecutionDescription>Copying %(FullPath)</ExecutionDescription>
</PublishDLLDependency>
</ItemDefinitionGroup>
-->
<ItemDefinitionGroup>
<PublishDLLDependency>
<CommandLineTemplate>copy "%(FullPath)" "$(TargetDir)"</CommandLineTemplate>
<Outputs>$(TargetDir)%(Filename)%(Extension)</Outputs>
<ExecutionDescription>Copying %(FullPath)</ExecutionDescription>
</PublishDLLDependency>
</ItemDefinitionGroup>
</Project>