summaryrefslogtreecommitdiff
path: root/tests/src
diff options
context:
space:
mode:
authorwtgodbe <wigodbe@microsoft.com>2017-07-12 14:04:19 -0700
committerwtgodbe <wigodbe@microsoft.com>2017-07-12 14:04:19 -0700
commit2ef16d17d855520a9f33f9c640f8de6fe33312f2 (patch)
tree78a42c2549c70072e3c7fb24934c68f498e82f1c /tests/src
parentd0e56b910dbf2b1c78933c29e9d09265d6da329a (diff)
downloadcoreclr-2ef16d17d855520a9f33f9c640f8de6fe33312f2.tar.gz
coreclr-2ef16d17d855520a9f33f9c640f8de6fe33312f2.tar.bz2
coreclr-2ef16d17d855520a9f33f9c640f8de6fe33312f2.zip
Add VC Runtime binaries to Core_Root for ARM tests
Diffstat (limited to 'tests/src')
-rw-r--r--tests/src/Common/vc_runtime/vc_runtime.csproj28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/src/Common/vc_runtime/vc_runtime.csproj b/tests/src/Common/vc_runtime/vc_runtime.csproj
new file mode 100644
index 0000000000..3380240ff6
--- /dev/null
+++ b/tests/src/Common/vc_runtime/vc_runtime.csproj
@@ -0,0 +1,28 @@
+<?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>
+ <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
+ <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
+ <CLRTestKind>BuildOnly</CLRTestKind>
+ <NugetTargetMoniker>.NETCoreApp,Version=v1.1</NugetTargetMoniker>
+ <NugetTargetMonikerShort>netcoreapp1.1</NugetTargetMonikerShort>
+ <IsTestProject>false</IsTestProject>
+ </PropertyGroup>
+ <ItemGroup>
+ <PackageReference Include="vc-runtime">
+ <Version>$(VCRuntimeVersion)</Version>
+ </PackageReference>
+ </ItemGroup>
+ <PropertyGroup>
+ <TargetFramework>netcoreapp1.1</TargetFramework>
+ <TargetFrameworkIdentifier>.NETCoreApp</TargetFrameworkIdentifier>
+ <PackageTargetFallback>$(PackageTargetFallback);dnxcore50;netcoreapp1.1;portable-net45+win8</PackageTargetFallback>
+ <RuntimeIdentifiers>win-arm</RuntimeIdentifiers>
+ <ContainsPackageReferences>true</ContainsPackageReferences>
+ <PrereleaseResolveNuGetPackages>false</PrereleaseResolveNuGetPackages>
+ </PropertyGroup>
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+ <Target Name="Build"
+ DependsOnTargets="ResolveReferences" />
+</Project>