summaryrefslogtreecommitdiff
path: root/src/.nuget/Microsoft.NETCore.Jit/Microsoft.NETCore.Jit.builds
blob: a0a56fd4b60a91524779495c8f7f742e590d553a (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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />

  <PropertyGroup>
    <!-- This property must be set to the same value as $(PackageOutputPath) for the nuspecs and nupkgs to be binplaced to the intended location. -->
    <OutputPath>$(PackageOutputPath)</OutputPath>
  </PropertyGroup>

  <!-- We always build the identity/redirection package. However, the platform specific runtime-*.nupkg is built based upon the target OS we are building the product for. -->
  <ItemGroup>
    <Project Include="Microsoft.NETCore.Jit.pkgproj">
    </Project>
    <Project Condition="'$(TargetsWindows)' == 'true'" Include="win/Microsoft.NETCore.Jit.pkgproj">
      <OSGroup>Windows_NT</OSGroup>
      <Platform>amd64</Platform>
    </Project>
    <Project Condition="'$(TargetsWindows)' == 'true'" Include="win/Microsoft.NETCore.Jit.pkgproj">
      <OSGroup>Windows_NT</OSGroup>
      <Platform>x86</Platform>
    </Project>
    <Project Condition="'$(TargetsLinux)' == 'true' and '$(DistroName)' == 'rhel'" Include="rhel/Microsoft.NETCore.Jit.pkgproj">
      <OSGroup>Linux</OSGroup>
      <Platform>amd64</Platform>
    </Project>
    <Project Condition="'$(TargetsLinux)' == 'true' and '$(DistroName)' == 'debian'" Include="debian/Microsoft.NETCore.Jit.pkgproj">
      <OSGroup>Linux</OSGroup>
      <Platform>amd64</Platform>
    </Project>
    <Project Condition="'$(TargetsLinux)' == 'true' and '$(DistroName)' == 'ubuntu'" Include="ubuntu/Microsoft.NETCore.Jit.pkgproj">
      <OSGroup>Linux</OSGroup>
      <Platform>amd64</Platform>
    </Project>
    <Project Condition="'$(TargetsOSX)' == 'true'" Include="osx/Microsoft.NETCore.Jit.pkgproj">
      <OSGroup>OSX</OSGroup>
      <Platform>amd64</Platform>
    </Project>
  </ItemGroup>

  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.traversal.targets))\dir.traversal.targets" />
</Project>