Welcome to mirror list, hosted at ThFree Co, Russian Federation.

runtime.depproj « runtime « external - github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 24faf6573bcd31ab067425e051d43c81799cc678 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="Build">
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
  <PropertyGroup>
    <!-- support cross-targeting by choosing a RID to restore when running on a different machine that what we're build for -->
    <NugetRuntimeIdentifier Condition="'$(OSGroup)' == 'Windows_NT' AND '$(RunningOnUnix)' == 'true'">win7-x64</NugetRuntimeIdentifier>
    <NugetRuntimeIdentifier Condition="'$(OSGroup)' == 'Unix' AND '$(RunningOnUnix)' != 'true'">ubuntu.14.04-x64</NugetRuntimeIdentifier>
    <!-- WORKAROUND: Force external packages to be restored for x64 until arm packages are fully broughtup-->
    <NugetRuntimeIdentifier Condition="'$(ArchGroup)' == 'arm'">$(RuntimeOS)-x64</NugetRuntimeIdentifier>
  </PropertyGroup>
  <PropertyGroup Condition="'$(TargetGroup)' == 'uapaot'">
    <ProjectJsonTemplate>$(MSBuildThisFileDirectory)NETNative/project.json.template</ProjectJsonTemplate>
    <NuGetDeploySourceItem>Reference</NuGetDeploySourceItem>
    <SkipFilterTargetingPackResolvedNugetPackages>false</SkipFilterTargetingPackResolvedNugetPackages>
  </PropertyGroup>
  <ItemGroup Condition="'$(TargetGroup)'=='uapaot'">
    <TargetingPackReference Include="System.Private.CoreLib" />
    <TargetingPackReference Include="System.Private.Interop" />
    <TargetingPackReference Include="System.Private.Threading" />
  </ItemGroup>
  <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
</Project>