forked from IronLanguages/ironpython2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBootstrap.targets
More file actions
21 lines (19 loc) · 1.01 KB
/
Copy pathBootstrap.targets
File metadata and controls
21 lines (19 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup>
<CustomTasksSource>$(MSBuildThisFileDirectory)CustomTasks\CustomTasks.cs</CustomTasksSource>
<CustomTasksDll>$(MSBuildThisFileDirectory)CustomTasks\CustomTasks.dll</CustomTasksDll>
</PropertyGroup>
<Target Name="Bootstrap"
Inputs="$(CustomTasksSource)"
Outputs="$(CustomTasksDll)">
<Csc Sources="$(CustomTasksSource)"
OutputAssembly="$(CustomTasksDll)"
References="Microsoft.Build.Framework.dll;Microsoft.Build.Utilities.v4.0.dll"
TargetType="library" />
</Target>
<UsingTask AssemblyFile="$(CustomTasksDll)" TaskName="CustomTasks.FormatString" />
<UsingTask AssemblyFile="$(CustomTasksDll)" TaskName="CustomTasks.CurrentTime" />
<UsingTask AssemblyFile="$(CustomTasksDll)" TaskName="CustomTasks.FormatTemplate" />
<UsingTask AssemblyFile="$(CustomTasksDll)" TaskName="CustomTasks.CopyStdLib" />
</Project>