diff options
| author | Rob Mensching <rob@firegiant.com> | 2017-09-24 15:49:15 -0700 |
|---|---|---|
| committer | Rob Mensching <rob@firegiant.com> | 2017-09-24 15:49:15 -0700 |
| commit | 5d6c31d1f5e0b8a46f41d4f321e878adba156bb2 (patch) | |
| tree | 0efc8b01fee4254b616a492e3191a36c4fb6f62a /src/WixToolset.Core.InternalPackage | |
| parent | feea62d5bd1f90bb012cb7cf2c84c9703f6568b2 (diff) | |
| download | wix-5d6c31d1f5e0b8a46f41d4f321e878adba156bb2.tar.gz wix-5d6c31d1f5e0b8a46f41d4f321e878adba156bb2.tar.bz2 wix-5d6c31d1f5e0b8a46f41d4f321e878adba156bb2.zip | |
Correctly name NuGet .props file
Diffstat (limited to 'src/WixToolset.Core.InternalPackage')
3 files changed, 10 insertions, 2 deletions
diff --git a/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.csproj b/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.csproj index 613c6b88..687e8955 100644 --- a/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.csproj +++ b/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.csproj | |||
| @@ -20,7 +20,7 @@ | |||
| 20 | <Error Text="Cannot pack $(MSBuildThisFileName) until all projects are published to: $(NuspecBasePath). Run appveyor.cmd to publish projects properly." Condition=" !Exists('$(NuspecBasePath)') " /> | 20 | <Error Text="Cannot pack $(MSBuildThisFileName) until all projects are published to: $(NuspecBasePath). Run appveyor.cmd to publish projects properly." Condition=" !Exists('$(NuspecBasePath)') " /> |
| 21 | 21 | ||
| 22 | <PropertyGroup> | 22 | <PropertyGroup> |
| 23 | <NuspecProperties>$(NuspecProperties);Version=$(Version)</NuspecProperties> | 23 | <NuspecProperties>$(NuspecProperties);Version=$(Version);ProjectFolder=$(MSBuildThisFileDirectory)</NuspecProperties> |
| 24 | </PropertyGroup> | 24 | </PropertyGroup> |
| 25 | </Target> | 25 | </Target> |
| 26 | </Project> | 26 | </Project> |
diff --git a/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.nuspec b/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.nuspec index 5879b7a5..5b81d615 100644 --- a/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.nuspec +++ b/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.nuspec | |||
| @@ -11,7 +11,7 @@ | |||
| 11 | </metadata> | 11 | </metadata> |
| 12 | 12 | ||
| 13 | <files> | 13 | <files> |
| 14 | <file src="redirects\wix.props" target="build" /> | 14 | <file src="$projectFolder$$id$.props" target="build" /> |
| 15 | 15 | ||
| 16 | <file src="redirects\wix.targets" target="msbuild" /> | 16 | <file src="redirects\wix.targets" target="msbuild" /> |
| 17 | <file src="redirects\wix.ca.targets" target="msbuild" /> | 17 | <file src="redirects\wix.ca.targets" target="msbuild" /> |
diff --git a/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.props b/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.props new file mode 100644 index 00000000..7448d192 --- /dev/null +++ b/src/WixToolset.Core.InternalPackage/WixToolset.Core.InternalPackage.props | |||
| @@ -0,0 +1,8 @@ | |||
| 1 | <?xml version="1.0" encoding="utf-8"?> | ||
| 2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
| 3 | |||
| 4 | <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> | ||
| 5 | <PropertyGroup> | ||
| 6 | <WixTargetsPath>$(MSBuildThisFileDirectory)..\tools\wix.targets</WixTargetsPath> | ||
| 7 | </PropertyGroup> | ||
| 8 | </Project> | ||
