タグ

installerとWiXに関するt_ashulaのブックマーク (2)

  • WiX Toolset

    About the WiX toolsetThe WiX toolset lets developers create installers for Windows Installer, the Windows installation engine. The core of WiX is a set of build tools that build Windows Installer packages using the same build concepts as the rest of your product: source code is compiled and then linked to create executables; in this case .exe setup bundles, .msi installation packages, .msm merge m

  • WiXではじめるWindows Installer作成入門 第1回:CodeZine

    最小インストーラを作成する開発環境の確認と最小インストーラの作成 WiXのチュートリアルでは、最も小さなルート要素だけで構成されたソースも用意しているのですが、さすがにそこから始めたのでは紙面が尽きてしまいますので、msiとしての最小構造から入りましょう。テキストエディタ(VSでもよい)で、下記のソースを作成します。文字コードそのものは何でも良いのですが、XMLの標準に従って、UTF-8を使うことにします(サンプルはすべてUTF-8で用意しています。エディタによっては文字化けすることがありますので、その場合は文字コードを指定してお読みください)。 <?xml version="1.0" encoding="UTF-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2003/01/wi"> <Product Id="B6A98E5F-D6

  • 1