0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

cscの作法 その262

Last updated at Posted at 2022-08-06

概要

cscの作法、調べてみた。
インストーラーやってみたいので、wixいれてみた。

環境

windows10

インストール

  • wix310.exeをダウンロードして実行
  • Wix Toolsetと立ち上がるのでInstallボタンを押す

サンプルコード

<?xml version="1.0" encoding="UTF-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
	<Product
		Id="a52608a3-9a98-4a25-9c9c-209bc5e72f70"
		UpgradeCode="a52608a3-9a98-4a25-9c9c-209bc5e72f70"
		Name="TEST PRODUCT"
		Version="1.00.0000"
		Manufacturer="ohisama"
		Language="1041"
	>
		<Package Id="*" Compressed="yes" InstallerVersion="400" />
	</Product>
</Wix>

コンパイル手順

>set PATH=C:\Program Files (x86)\WiX Toolset v3.10\bin;%PATH%

>candle test0.wxs

>light test0.wixobj

以上

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?