summaryrefslogtreecommitdiff
path: root/dir.props
diff options
context:
space:
mode:
authorchcosta <chcosta@microsoft.com>2017-03-08 16:07:32 -0800
committerGitHub <noreply@github.com>2017-03-08 16:07:32 -0800
commit8f23fca0ff57c97707d4f6b5068e8044d2dcc13c (patch)
treec41607d9ef3007cd1107a075f7aa700916589179 /dir.props
parent5bdc20368230e271000109319f3e3236e855d374 (diff)
downloadcoreclr-8f23fca0ff57c97707d4f6b5068e8044d2dcc13c.tar.gz
coreclr-8f23fca0ff57c97707d4f6b5068e8044d2dcc13c.tar.bz2
coreclr-8f23fca0ff57c97707d4f6b5068e8044d2dcc13c.zip
Update to buildtools version 1.0.27-prerelease-01407-02, and enable creating transport packages (#10020)
* Update BuildTools fixes * Update to buildtools version 1.0.27-prerelease-01407-02, and enable building transport packages * fix netcore project * Avoid msb3644 error * Fix bad copy
Diffstat (limited to 'dir.props')
-rw-r--r--dir.props7
1 files changed, 6 insertions, 1 deletions
diff --git a/dir.props b/dir.props
index a71bd9fec6..1d641ec264 100644
--- a/dir.props
+++ b/dir.props
@@ -160,7 +160,7 @@
<!-- On Windows, MSbuild still runs against Desktop FX while it runs on .NET Core on non-Windows. this requires
pulling in different packaging dependencies.
-->
- <PackagingTaskDir Condition="'$(TargetsWindows)' == 'true'">$(ToolsDir)net45/</PackagingTaskDir>
+ <PackagingTaskDir Condition="'$(TargetsWindows)' == 'true'">$(ToolsDir)net46/</PackagingTaskDir>
<BuildNumberMajor Condition="'$(BuildNumberMajor)' == ''">00001</BuildNumberMajor>
<!-- defined in buildtools packaging.targets, but we need this before targets are imported -->
<PackagePlatform Condition="'$(PackagePlatform)' == ''">$(Platform)</PackagePlatform>
@@ -178,6 +178,10 @@
<PackageOutputPath>$(PackagesBinDir)/pkg/</PackageOutputPath>
<SymbolPackageOutputPath>$(PackagesBinDir)/symbolpkg/</SymbolPackageOutputPath>
+ <PackageIndexFile>$(MSBuildThisFileDirectory)/src/.nuget/packageIndex.json</PackageIndexFile>
+
+ <!-- coreclr doesn't currently use the index so don't force it to be in sync -->
+ <SkipIndexCheck>true</SkipIndexCheck>
</PropertyGroup>
<!-- Add required legal files to packages -->
@@ -190,6 +194,7 @@
Include="$(PackageThirdPartyNoticesFile)" >
<SkipPackageFileCheck>true</SkipPackageFileCheck>
</File>
+ <PackageIndex Include="$(PackageIndexFile)" />
</ItemGroup>
</Project>