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:
authorJan Kotas <jkotas@microsoft.com>2017-06-24 21:10:44 +0300
committerGitHub <noreply@github.com>2017-06-24 21:10:44 +0300
commit555bcbcb5458a7aacb404f8242a6fe9267266ca7 (patch)
treedfb7caea05fb1f004869a4eba32267f2a76fe449 /src/Runtime.Base
parent095e43a781181d9a59ceb726a9c72a65913dbdeb (diff)
Update CoreRT build to use latest .NET CLI and build tools (#3916)
- Pick up latest .NET Core 2.0 CLI and buildtools - Remove all project.json references and convert everything to msbuild projects - Stick to vanilla .NET CLI project shape as much as possible. Minimize dependencies on buildtools special behaviors
Diffstat (limited to 'src/Runtime.Base')
-rw-r--r--src/Runtime.Base/src/Runtime.Base.csproj17
1 files changed, 1 insertions, 16 deletions
diff --git a/src/Runtime.Base/src/Runtime.Base.csproj b/src/Runtime.Base/src/Runtime.Base.csproj
index e76d6957b..f4ccefe2f 100644
--- a/src/Runtime.Base/src/Runtime.Base.csproj
+++ b/src/Runtime.Base/src/Runtime.Base.csproj
@@ -1,32 +1,17 @@
-<?xml version="1.0" encoding="utf-8"?>
-<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
+<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
<PropertyGroup>
- <ProjectGuid>{CA7FAACD-89ED-4D41-8377-92C1D9055720}</ProjectGuid>
<OutputType>Library</OutputType>
<AssemblyName>Runtime.Base</AssemblyName>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- <ExcludeDefaultReferences>true</ExcludeDefaultReferences>
<IsCoreAssembly>true</IsCoreAssembly>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<!-- Hack to disable analyzers. Replace once https://github.com/dotnet/buildtools/issues/1349 is fixed. -->
<CodeAnalyzerDir>$(MSBuildThisFileDirectory)/Documentation</CodeAnalyzerDir>
</PropertyGroup>
- <!-- Default configurations to help VS understand the options -->
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'" />
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x86'" />
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'" />
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'" />
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|arm'" />
- <PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|arm'" />
-
- <PropertyGroup>
- <SkipCommonResourcesIncludes>true</SkipCommonResourcesIncludes>
- </PropertyGroup>
-
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<DefineConstants>FEATURE_GC_STRESS;$(DefineConstants)</DefineConstants>
</PropertyGroup>