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

github.com/mono/corefx.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Mellino <erme@microsoft.com>2017-04-11 03:03:14 +0300
committerEric Mellino <erme@microsoft.com>2017-04-25 03:32:28 +0300
commit77cbe83794aa1a7853b48e9ee5e3930697d9807c (patch)
treee9b4ac5c1347e705ab8d74718bc4b2f6e225ff6e /init-tools.msbuild
parent93fa7c4b26bb64f221755097a39d4392935d1a15 (diff)
Create an init-tools.msbuild project file.
This file is used in init-tools.cmd/sh, and replaces the "generated" project file used previously. Because we are using MSBuild projects for nuget restore now, we are able to "parameterize" the version of Microsoft.DotNet.BuildTools based on an MSBuild property which is passed in to the "dotnet restore" command in init-tools.
Diffstat (limited to 'init-tools.msbuild')
-rw-r--r--init-tools.msbuild10
1 files changed, 10 insertions, 0 deletions
diff --git a/init-tools.msbuild b/init-tools.msbuild
new file mode 100644
index 0000000000..93abd16d1d
--- /dev/null
+++ b/init-tools.msbuild
@@ -0,0 +1,10 @@
+<Project Sdk="Microsoft.NET.Sdk">
+ <PropertyGroup>
+ <TargetFramework>netcoreapp1.0</TargetFramework>
+ <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences>
+ <BaseIntermediateOutputPath>$(MSBuildThisFileDirectory)Tools/$(BuildToolsPackageVersion)</BaseIntermediateOutputPath>
+ </PropertyGroup>
+ <ItemGroup>
+ <PackageReference Include="Microsoft.DotNet.BuildTools" Version="$(BuildToolsPackageVersion)" />
+ </ItemGroup>
+</Project> \ No newline at end of file