mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-13 17:22:48 -05:00
More installer migration
This commit is contained in:
@@ -24,6 +24,10 @@
|
||||
<Compile Include="Bundle.wxs" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<WixExtension Include="WixBalExtensionExt">
|
||||
<HintPath>..\..\..\Public\WixBalExtensionExt\wixext\bin\Debug\WixBalExtensionExt.dll</HintPath>
|
||||
<Name>WixBalExtensionExt</Name>
|
||||
</WixExtension>
|
||||
<WixExtension Include="WixNetFxExtension">
|
||||
<HintPath>$(WixExtDir)\WixNetFxExtension.dll</HintPath>
|
||||
<Name>WixNetFxExtension</Name>
|
||||
@@ -32,10 +36,6 @@
|
||||
<HintPath>..\..\WixFileVersionExtension\bin\Release\WixFileVersionExtension.dll</HintPath>
|
||||
<Name>WixFileVersionExtension</Name>
|
||||
</WixExtension>
|
||||
<WixExtension Include="WixBalExtension">
|
||||
<HintPath>$(WixExtDir)\WixBalExtension.dll</HintPath>
|
||||
<Name>WixBalExtension</Name>
|
||||
</WixExtension>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Application\FeedCenter.csproj">
|
||||
@@ -57,7 +57,9 @@
|
||||
</ItemGroup>
|
||||
<Import Project="$(WixTargetsPath)" />
|
||||
<PropertyGroup>
|
||||
<PostBuildEvent>D:\Code\Personal\CreateInstallDescriptor\bin\Debug\CreateInstallDescriptor.exe !(TargetPath) $(TargetDir)\$(TargetName).xml</PostBuildEvent>
|
||||
<PostBuildEvent>D:\Code\Personal\CreateInstallDescriptor\bin\Debug\CreateInstallDescriptor.exe !(TargetPath) $(TargetDir)\$(TargetName).xml
|
||||
copy $(TargetDir)\$(TargetName).xml \\server\d\FeedCenter
|
||||
copy $(TargetDir)\$(TargetName).exe \\server\d\FeedCenter</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
<!--
|
||||
To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
||||
xmlns:bal="http://schemas.microsoft.com/wix/BalExtension">
|
||||
|
||||
<?define ProductName="$(fileVersion.ProductName($(var.FeedCenter.TargetPath)))" ?>
|
||||
<?define CompanyName="$(fileVersion.CompanyName($(var.FeedCenter.TargetPath)))" ?>
|
||||
<?define ProductVersion="$(fileVersion.ProductVersion($(var.FeedCenter.TargetPath)))" ?>
|
||||
@@ -9,18 +11,21 @@
|
||||
Manufacturer="$(var.CompanyName)"
|
||||
UpgradeCode="5e5c13a5-635e-4310-a653-0f9760f46935">
|
||||
|
||||
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.HyperlinkLicense">
|
||||
<bal:WixStandardBootstrapperApplication
|
||||
<BootstrapperApplicationRef Id="WixExtendedBootstrapperApplication.HyperlinkLicense">
|
||||
<bal:WixExtendedBootstrapperApplication
|
||||
LicenseUrl=""
|
||||
SuppressOptionsUI="yes"
|
||||
xmlns:bal="http://schemas.microsoft.com/wix/BalExtension" />
|
||||
ShowVersion="yes"
|
||||
LaunchPassive="yes"
|
||||
LaunchQuiet="yes"
|
||||
LaunchTarget="[LocalAppDataFolder]$(var.ProductName)\FeedCenter.exe" />
|
||||
</BootstrapperApplicationRef>
|
||||
|
||||
|
||||
<Chain>
|
||||
<PackageGroupRef Id="NetFx451Web"/>
|
||||
<PackageGroupRef Id="NetFx451Web" />
|
||||
|
||||
<MsiPackage Id="FeedCenter"
|
||||
SourceFile="$(var.Setup.TargetPath)"/>
|
||||
SourceFile="$(var.Setup.TargetPath)" />
|
||||
</Chain>
|
||||
</Bundle>
|
||||
</Wix>
|
||||
Reference in New Issue
Block a user