forked from P0L3NARUBA/roblox-2016-source-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CustomBuildRules.targets
81 lines (81 loc) · 3.61 KB
/
CustomBuildRules.targets
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<PropertyPageSchema
Include="$(MSBuildThisFileDirectory)$(MSBuildThisFileName).xml" />
<AvailableItemName
Include="PublishDLLDependency">
<Targets>_PublishDLLDependency</Targets>
</AvailableItemName>
</ItemGroup>
<UsingTask
TaskName="PublishDLLDependency"
TaskFactory="XamlTaskFactory"
AssemblyName="Microsoft.Build.Tasks.v4.0">
<Task>$(MSBuildThisFileDirectory)$(MSBuildThisFileName).xml</Task>
</UsingTask>
<Target
Name="_PublishDLLDependency"
BeforeTargets="$(PublishDLLDependencyBeforeTargets)"
AfterTargets="$(PublishDLLDependencyAfterTargets)"
Condition="'@(PublishDLLDependency)' != ''"
DependsOnTargets="$(PublishDLLDependencyDependsOn);ComputePublishDLLDependencyOutput"
Outputs="%(PublishDLLDependency.Outputs)"
Inputs="%(PublishDLLDependency.Identity);%(PublishDLLDependency.AdditionalDependencies);$(MSBuildProjectFile)">
<ItemGroup
Condition="'@(SelectedFiles)' != ''">
<PublishDLLDependency
Remove="@(PublishDLLDependency)"
Condition="'%(Identity)' != '@(SelectedFiles)'" />
</ItemGroup>
<ItemGroup>
<PublishDLLDependency_tlog
Include="%(PublishDLLDependency.Outputs)"
Condition="'%(PublishDLLDependency.Outputs)' != '' and '%(PublishDLLDependency.ExcludedFromBuild)' != 'true'">
<Source>@(PublishDLLDependency, '|')</Source>
</PublishDLLDependency_tlog>
</ItemGroup>
<Message
Importance="High"
Text="%(PublishDLLDependency.ExecutionDescription)" />
<WriteLinesToFile
Condition="'@(PublishDLLDependency_tlog)' != '' and '%(PublishDLLDependency_tlog.ExcludedFromBuild)' != 'true'"
File="$(TLogLocation)$(ProjectName).write.1.tlog"
Lines="^%(PublishDLLDependency_tlog.Source);@(PublishDLLDependency_tlog->'%(Fullpath)')" />
<PublishDLLDependency
Condition="'@(PublishDLLDependency)' != '' and '%(PublishDLLDependency.ExcludedFromBuild)' != 'true'"
CommandLineTemplate="%(PublishDLLDependency.CommandLineTemplate)"
AdditionalOptions="%(PublishDLLDependency.AdditionalOptions)"
Inputs="%(PublishDLLDependency.Identity)" />
</Target>
<PropertyGroup>
<ComputeLinkInputsTargets>
$(ComputeLinkInputsTargets);
ComputePublishDLLDependencyOutput;
</ComputeLinkInputsTargets>
<ComputeLibInputsTargets>
$(ComputeLibInputsTargets);
ComputePublishDLLDependencyOutput;
</ComputeLibInputsTargets>
</PropertyGroup>
<Target
Name="ComputePublishDLLDependencyOutput"
Condition="'@(PublishDLLDependency)' != ''">
<ItemGroup>
<PublishDLLDependencyDirsToMake
Condition="'@(PublishDLLDependency)' != '' and '%(PublishDLLDependency.ExcludedFromBuild)' != 'true'"
Include="%(PublishDLLDependency.Outputs)" />
<Link
Include="%(PublishDLLDependencyDirsToMake.Identity)"
Condition="'%(Extension)'=='.obj' or '%(Extension)'=='.res' or '%(Extension)'=='.rsc' or '%(Extension)'=='.lib'" />
<Lib
Include="%(PublishDLLDependencyDirsToMake.Identity)"
Condition="'%(Extension)'=='.obj' or '%(Extension)'=='.res' or '%(Extension)'=='.rsc' or '%(Extension)'=='.lib'" />
<ImpLib
Include="%(PublishDLLDependencyDirsToMake.Identity)"
Condition="'%(Extension)'=='.obj' or '%(Extension)'=='.res' or '%(Extension)'=='.rsc' or '%(Extension)'=='.lib'" />
</ItemGroup>
<MakeDir
Directories="@(PublishDLLDependencyDirsToMake->'%(RootDir)%(Directory)')" />
</Target>
</Project>