mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-13 17:22:48 -05:00
Get WiX extensions from NuGet
This commit is contained in:
@@ -26,17 +26,17 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<WixExtension Include="WixBalExtensionExt">
|
<WixExtension Include="WixBalExtensionExt">
|
||||||
<HintPath>..\..\WixBalExtensionExt\wixext\bin\Release\WixBalExtensionExt.dll</HintPath>
|
<HintPath>..\packages\WixBalExtensionExt.1.0.0.49\lib\WixBalExtensionExt.dll</HintPath>
|
||||||
<Name>WixBalExtensionExt</Name>
|
<Name>WixBalExtensionExt</Name>
|
||||||
</WixExtension>
|
</WixExtension>
|
||||||
|
<WixExtension Include="WixFileVersionExtension">
|
||||||
|
<HintPath>..\packages\WixFileVersionExtension.1.0.0.3\lib\WixFileVersionExtension.dll</HintPath>
|
||||||
|
<Name>WixFileVersionExtension</Name>
|
||||||
|
</WixExtension>
|
||||||
<WixExtension Include="WixNetFxExtension">
|
<WixExtension Include="WixNetFxExtension">
|
||||||
<HintPath>$(WixExtDir)\WixNetFxExtension.dll</HintPath>
|
<HintPath>$(WixExtDir)\WixNetFxExtension.dll</HintPath>
|
||||||
<Name>WixNetFxExtension</Name>
|
<Name>WixNetFxExtension</Name>
|
||||||
</WixExtension>
|
</WixExtension>
|
||||||
<WixExtension Include="WixFileVersionExtension">
|
|
||||||
<HintPath>..\..\WixFileVersionExtension\bin\Release\WixFileVersionExtension.dll</HintPath>
|
|
||||||
<Name>WixFileVersionExtension</Name>
|
|
||||||
</WixExtension>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Application\FeedCenter.csproj">
|
<ProjectReference Include="..\Application\FeedCenter.csproj">
|
||||||
@@ -56,6 +56,9 @@
|
|||||||
<RefTargetDir>INSTALLFOLDER</RefTargetDir>
|
<RefTargetDir>INSTALLFOLDER</RefTargetDir>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Content Include="packages.config" />
|
||||||
|
</ItemGroup>
|
||||||
<Import Project="$(WixTargetsPath)" />
|
<Import Project="$(WixTargetsPath)" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<PostBuildEvent>D:\Code\Personal\CreateInstallDescriptor\bin\Debug\CreateInstallDescriptor.exe !(TargetPath) $(TargetDir)\$(TargetName).xml
|
<PostBuildEvent>D:\Code\Personal\CreateInstallDescriptor\bin\Debug\CreateInstallDescriptor.exe !(TargetPath) $(TargetDir)\$(TargetName).xml
|
||||||
|
|||||||
5
Bootstrapper/packages.config
Normal file
5
Bootstrapper/packages.config
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<packages>
|
||||||
|
<package id="WixBalExtensionExt" version="1.0.0.49" />
|
||||||
|
<package id="WixFileVersionExtension" version="1.0.0.3" />
|
||||||
|
</packages>
|
||||||
@@ -29,6 +29,10 @@
|
|||||||
<Compile Include="Product.wxs" />
|
<Compile Include="Product.wxs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<WixExtension Include="WixFileVersionExtension">
|
||||||
|
<HintPath>..\packages\WixFileVersionExtension.1.0.0.3\lib\WixFileVersionExtension.dll</HintPath>
|
||||||
|
<Name>WixFileVersionExtension</Name>
|
||||||
|
</WixExtension>
|
||||||
<WixExtension Include="WixUtilExtension">
|
<WixExtension Include="WixUtilExtension">
|
||||||
<HintPath>$(WixExtDir)\WixUtilExtension.dll</HintPath>
|
<HintPath>$(WixExtDir)\WixUtilExtension.dll</HintPath>
|
||||||
<Name>WixUtilExtension</Name>
|
<Name>WixUtilExtension</Name>
|
||||||
@@ -37,10 +41,6 @@
|
|||||||
<HintPath>$(WixExtDir)\WixNetFxExtension.dll</HintPath>
|
<HintPath>$(WixExtDir)\WixNetFxExtension.dll</HintPath>
|
||||||
<Name>WixNetFxExtension</Name>
|
<Name>WixNetFxExtension</Name>
|
||||||
</WixExtension>
|
</WixExtension>
|
||||||
<WixExtension Include="WixFileVersionExtension">
|
|
||||||
<HintPath>..\..\WixFileVersionExtension\bin\Release\WixFileVersionExtension.dll</HintPath>
|
|
||||||
<Name>WixFileVersionExtension</Name>
|
|
||||||
</WixExtension>
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ProjectReference Include="..\Application\FeedCenter.csproj">
|
<ProjectReference Include="..\Application\FeedCenter.csproj">
|
||||||
@@ -76,6 +76,9 @@
|
|||||||
<RefTargetDir>INSTALLFOLDER</RefTargetDir>
|
<RefTargetDir>INSTALLFOLDER</RefTargetDir>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Content Include="packages.config" />
|
||||||
|
</ItemGroup>
|
||||||
<Import Project="$(WixTargetsPath)" />
|
<Import Project="$(WixTargetsPath)" />
|
||||||
<!--
|
<!--
|
||||||
To modify your build process, add your task inside one of the targets below and uncomment it.
|
To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
|||||||
4
Setup/packages.config
Normal file
4
Setup/packages.config
Normal file
@@ -0,0 +1,4 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<packages>
|
||||||
|
<package id="WixFileVersionExtension" version="1.0.0.3" />
|
||||||
|
</packages>
|
||||||
Reference in New Issue
Block a user