diff options
Diffstat (limited to 'src/ext/Http')
-rw-r--r-- | src/ext/Http/wixext/WixToolset.Http.wixext.csproj | 6 | ||||
-rw-r--r-- | src/ext/Http/wixext/WixToolset.Http.wixext.targets | 10 |
2 files changed, 7 insertions, 9 deletions
diff --git a/src/ext/Http/wixext/WixToolset.Http.wixext.csproj b/src/ext/Http/wixext/WixToolset.Http.wixext.csproj index d11e28cc..cee26f86 100644 --- a/src/ext/Http/wixext/WixToolset.Http.wixext.csproj +++ b/src/ext/Http/wixext/WixToolset.Http.wixext.csproj | |||
@@ -10,6 +10,8 @@ | |||
10 | <DebugType>embedded</DebugType> | 10 | <DebugType>embedded</DebugType> |
11 | </PropertyGroup> | 11 | </PropertyGroup> |
12 | 12 | ||
13 | <Import Project="..\..\WixExt.props" /> | ||
14 | |||
13 | <ItemGroup> | 15 | <ItemGroup> |
14 | <EmbeddedResource Include="$(OutputPath)..\http.wixlib" /> | 16 | <EmbeddedResource Include="$(OutputPath)..\http.wixlib" /> |
15 | </ItemGroup> | 17 | </ItemGroup> |
@@ -17,8 +19,4 @@ | |||
17 | <ItemGroup Condition=" '$(NCrunch)'=='' "> | 19 | <ItemGroup Condition=" '$(NCrunch)'=='' "> |
18 | <ProjectReference Include="..\wixlib\http.wixproj" ReferenceOutputAssembly="false" SkipGetTargetFrameworkProperties="true" /> | 20 | <ProjectReference Include="..\wixlib\http.wixproj" ReferenceOutputAssembly="false" SkipGetTargetFrameworkProperties="true" /> |
19 | </ItemGroup> | 21 | </ItemGroup> |
20 | |||
21 | <ItemGroup> | ||
22 | <PackageReference Include="WixToolset.Extensibility" PrivateAssets="all" /> | ||
23 | </ItemGroup> | ||
24 | </Project> | 22 | </Project> |
diff --git a/src/ext/Http/wixext/WixToolset.Http.wixext.targets b/src/ext/Http/wixext/WixToolset.Http.wixext.targets index 254b0010..bf6df083 100644 --- a/src/ext/Http/wixext/WixToolset.Http.wixext.targets +++ b/src/ext/Http/wixext/WixToolset.Http.wixext.targets | |||
@@ -1,11 +1,11 @@ | |||
1 | <?xml version="1.0" encoding="utf-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. --> | 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 | 3 | ||
4 | <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> | 4 | <Project> |
5 | <PropertyGroup> | ||
6 | <WixToolsetHttpWixextPath Condition=" '$(WixToolsetHttpWixextPath)' == '' ">$(MSBuildThisFileDirectory)..\tools\WixToolset.Http.wixext.dll</WixToolsetHttpWixextPath> | ||
7 | </PropertyGroup> | ||
8 | <ItemGroup> | 5 | <ItemGroup> |
9 | <WixExtension Include="$(WixToolsetHttpWixextPath)" /> | 6 | <WixExtension Include="$(MSBuildThisFileDirectory)..\$(WixToolsetExtensionPackageFolder)\$(MSBuildThisFileName).dll" |
7 | Condition=" Exists('$(MSBuildThisFileDirectory)..\$(WixToolsetExtensionPackageFolder)\$(MSBuildThisFileName).dll') " /> | ||
8 | <UnsupportedWixExtension Include="$(MSBuildThisFileName)" | ||
9 | Condition=" !Exists('$(MSBuildThisFileDirectory)..\$(WixToolsetExtensionPackageFolder)\$(MSBuildThisFileName).dll') " /> | ||
10 | </ItemGroup> | 10 | </ItemGroup> |
11 | </Project> | 11 | </Project> |