summaryrefslogtreecommitdiff
path: root/tests/src/readytorun/mainv2.csproj
diff options
context:
space:
mode:
authorJan Vorlicek <janvorli@microsoft.com>2015-05-18 15:17:53 +0200
committerJan Vorlicek <janvorli@microsoft.com>2015-08-26 21:06:56 +0200
commit79c84e436d521f347997245724772693979e9f3e (patch)
tree13a122ccda7f4321d59d65cb70739a7c639cb9cc /tests/src/readytorun/mainv2.csproj
parent6f3131364edfe08c6c697a5b65279991e14e4d16 (diff)
downloadcoreclr-79c84e436d521f347997245724772693979e9f3e.tar.gz
coreclr-79c84e436d521f347997245724772693979e9f3e.tar.bz2
coreclr-79c84e436d521f347997245724772693979e9f3e.zip
Add ready to run tests
Add tests to verify ready to run handles versioning correctly.
Diffstat (limited to 'tests/src/readytorun/mainv2.csproj')
-rw-r--r--tests/src/readytorun/mainv2.csproj59
1 files changed, 59 insertions, 0 deletions
diff --git a/tests/src/readytorun/mainv2.csproj b/tests/src/readytorun/mainv2.csproj
new file mode 100644
index 0000000000..d52265385c
--- /dev/null
+++ b/tests/src/readytorun/mainv2.csproj
@@ -0,0 +1,59 @@
+<?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>
+ <AssemblyName>mainv2</AssemblyName>
+ <SchemaVersion>2.0</SchemaVersion>
+ <ProjectGuid>{840300BB-0DD2-4BD3-A3C1-51C92DD4ADAD}</ProjectGuid>
+ <OutputType>exe</OutputType>
+ <AppDesignerFolder>Properties</AppDesignerFolder>
+ <FileAlignment>512</FileAlignment>
+ <ProjectTypeGuids>{786C830F-07A1-408B-BD7F-6EE04809D6DB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
+ <ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\11.0\UITestExtensionPackages</ReferencePath>
+ <SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\..\</SolutionDir>
+ <RestorePackages>true</RestorePackages>
+ <NuGetPackageImportStamp>7a9bfb7d</NuGetPackageImportStamp>
+ <DefineConstants>$(DefineConstants);STATIC;CORECLR;V2</DefineConstants>
+ </PropertyGroup>
+ <!-- Default configurations to help VS understand the configurations -->
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
+ </PropertyGroup>
+ <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
+ </PropertyGroup>
+ <ItemGroup>
+ <CodeAnalysisDependentAssemblyPaths Condition=" '$(VS100COMNTOOLS)' != '' " Include="$(VS100COMNTOOLS)..\IDE\PrivateAssemblies">
+ <Visible>False</Visible>
+ </CodeAnalysisDependentAssemblyPaths>
+ </ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="testv2.csproj">
+ <Project>{95DFC527-4DC1-495E-97D7-E94EE1F7140D}</Project>
+ </ProjectReference>
+ </ItemGroup>
+ <ItemGroup>
+ <Compile Include="main.cs" />
+ </ItemGroup>
+ <ItemGroup>
+ <None Include="packages.config" />
+ <None Include="app.config" />
+ </ItemGroup>
+ <ItemGroup>
+ <Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
+ </ItemGroup>
+ <ItemGroup>
+ <Reference Include="testv2">
+ <HintPath>$(TargetDir)\testv2.dll</HintPath>
+ </Reference>
+ </ItemGroup>
+ <PropertyGroup>
+ <_CLRTestPreCommands><![CDATA[
+$(_CLRTestPreCommands)
+IF not exist NI mkdir NI
+%Core_Root%\crossgen /readytorun /platform_assemblies_paths %Core_Root%%3B%25CD% /out NI\testv2.ni.dll testv2.dll
+%Core_Root%\crossgen /readytorun /platform_assemblies_paths %Core_Root%%3B%25CD% /out NI\mainv2.ni.exe mainv2.exe
+]]></_CLRTestPreCommands>
+ </PropertyGroup>
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+</Project>