forked from dotnet/coreclr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.proj
23 lines (17 loc) · 810 Bytes
/
build.proj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="dir.props" />
<ItemGroup>
<!-- We use build.proj instead of dirs.proj so we don't conflict with the TFS build-->
<Project Include="src\build.proj" />
</ItemGroup>
<Import Project="dir.targets" />
<Import Project="dir.traversal.targets" />
<!-- Override clean from dir.traversal.targets and just remove the full BinDir -->
<Target Name="Clean">
<Delete Files="$(BinDir)mscorlib.*" />
</Target>
<Target Name="RestoreNETCorePlatforms" AfterTargets="Build">
<Exec Command="$(DnuRestoreCommand) $(SourceDir).nuget/init/project.json --source https://www.myget.org/F/dotnet-core/" />
</Target>
</Project>