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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/Simple/SimpleTest.targets')
-rw-r--r--tests/src/Simple/SimpleTest.targets23
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/src/Simple/SimpleTest.targets b/tests/src/Simple/SimpleTest.targets
new file mode 100644
index 000000000..572e6982a
--- /dev/null
+++ b/tests/src/Simple/SimpleTest.targets
@@ -0,0 +1,23 @@
+<Project ToolsVersion="14.0" DefaultTargets="LinkNative" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
+
+ <PropertyGroup>
+ <OutputType>Exe</OutputType>
+ <OutputPath>$(MSBuildProjectDirectory)\bin\$(Configuration)\</OutputPath>
+ <IntermediateOutputPath>$(MSBuildProjectDirectory)\obj\$(Configuration)\</IntermediateOutputPath>
+ </PropertyGroup>
+
+ <PropertyGroup>
+ <ProjectJson>$(MSBuildThisFileDirectory)\project.json</ProjectJson>
+ <ProjectLockJson>$(MSBuildThisFileDirectory)\project.lock.json</ProjectLockJson>
+ <CopyNuGetImplementations>false</CopyNuGetImplementations>
+ <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
+ <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
+ </PropertyGroup>
+
+ <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />
+
+ <!-- Use the source primary copy for development convenience -->
+ <Import Project="$(MSBuildThisFileDirectory)\..\..\..\src\BuildIntegration\Microsoft.NETCore.Native.targets" />
+ <!-- <Import Project="$(IlcPath)\Microsoft.NETCore.Native.targets" /> -->
+</Project> \ No newline at end of file