summaryrefslogtreecommitdiff
path: root/build.proj
blob: 07bb11a9225f7786cb4db3b788178d16c612325f (plain)
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
<?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" />

  <!-- The following properties are in place to keep the behavior of build.cmd while we work on the dev workflow steps. -->
  <PropertyGroup>
    <!-- To disable the restoration of packages, set RestoreDuringBuild=false or pass /p:RestoreDuringBuild=false.-->
    <RestoreDuringBuild Condition="'$(RestoreDuringBuild)'==''">true</RestoreDuringBuild>
  </PropertyGroup>

  <!-- Override clean from dir.traversal.targets and just remove the full BinDir -->
  <Target Name="Clean">
    <Delete Files="$(BinDir)SOS.NETCore.*" />
    <Delete Files="$(BinDir)mscorlib.*" />
    <Delete Files="$(BinDir)System.Private.CoreLib.*" />
  </Target>

  <PropertyGroup>
    <OptDataProjectJson>$(SourceDir).nuget/optdata/project.json</OptDataProjectJson>
    <OptDataPackageFeed>https://dotnet.myget.org/F/dotnet-core-optimization-data/api/v3/index.json</OptDataPackageFeed>
  </PropertyGroup>
  <Target Name="RestoreOptData">
    <Exec Condition="Exists('$(OptDataProjectJson)')" Command="$(DnuRestoreCommand) &quot;$(OptDataProjectJson)&quot; --source &quot;$(OptDataPackageFeed)&quot;" />
  </Target>

  <!--
    BuildTools will conditionally restore additional packages, including IBC tools, using the "RestoreOptionalToolingPackages"
    target, which runs automatically before "Sync". Since no "Sync" target actually exists, go ahead and define one now so that
    the tools are fetched before "Build".
  -->
  <Target Name="Sync" BeforeTargets="Build" />

  <Target Name="RestoreNETCorePlatforms" AfterTargets="Build" Condition="'$(RestoreDuringBuild)'=='true'">
    <Exec Command="$(DnuRestoreCommand) &quot;$(SourceDir).nuget/init/project.json&quot; --source https://dotnet.myget.org/F/dotnet-core/api/v3/index.json" />
  </Target>
  
</Project>