0
WCFサービスプロジェクトをビルドしていますが、Wixベースのセットアッププロジェクトをソリューション(VS.NET 2013)に追加したいと考えています。私は初めてWixツールセットを使用しています。私はWixツールセットVer 3.10の最新バージョンを使用しています。WXFツールセットを使用してWCF Webサービスを展開する - 手順
.wxsファイルを埋めるために必要な手順を記述してください。ここで
ImportService.wxsからXMLコンテンツである: -
<?xml version="1.0" encoding="UTF-8"?><Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="$(var.outputName)" Language="1033" Version="1.0.0.0" Manufacturer="Client" UpgradeCode="80d51001-e699-47b8-9221-fc6633fddf15">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" Platform="x64" />
<MajorUpgrade DowngradeErrorMessage="A newer version of Import Service is already installed." />
<Media Id="1" Cabinet="Cab1.cab" EmbedCab="yes"/>
<MediaTemplate />
<Feature Id="ProductFeature" Title="$(var.outputName)" Level="1">
<ComponentGroupRef Id="ProductComponents" />
</Feature>
</Product>
<Fragment>
<Directory Id="TARGETDIR" Name="SourceDir">
<Directory Id="ProgramFiles64Folder">
<Directory Id="Client" Name="Client" >
<Directory Id="INSTALLFOLDER" Name="$(var.outputName)" />
</Directory>
</Directory>
</Directory>
</Fragment>
<Fragment>
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
<!--<Component Id="ProductComponent" Guid="93A6A063-F63D-455A-BD63-A21D32D15CE5" Win64="yes">
</Component>-->
</ComponentGroup>
</Fragment>
にWCF .SVC &他のファイルを追加する方法を提案してください。 wixファイル内のComponentGroup領域。
私は高い展開領域に直接IISを使用することはできません。そのため、.MSIファイルをビルドチームに渡す必要があります。 – Karan