Skip to content

Commit ecbc93a

Browse files
committed
update wix script
1 parent 8598903 commit ecbc93a

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,5 @@
1-
.ecs_output/
1+
.ecs_output/
2+
release/wix/bin/
3+
release/wix/imports/
4+
release/wix/ecs.csc
5+
release/wix/extended-covscript-x64.msi

ecs.csc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ function crc32_file(path)
7979
return crc32val.logic_xor("0xFFFFFFFF"hex).to_hash()
8080
end
8181

82-
var wrapper_ver = "1.3"
82+
var wrapper_ver = "1.3.0"
8383

8484
function show_version()
8585
@begin

release/wix/ecs_wix.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3-
<Product Id="*" Name="Extended CovScript 1.3" Language="1033" Version="1.3" Manufacturer="Covariant Script Organization" UpgradeCode="EE550103-C236-7774-F9F1-EE39E951DD57">
3+
<Product Id="*" Name="Extended CovScript 1.3.0 Patch 1" Language="1033" Version="1.3.0.1" Manufacturer="Covariant Script Organization" UpgradeCode="EE550103-C236-7774-F9F1-EE39E951DD57">
44
<Package Id="*" Keywords="Extended CovScript" Description="Extended Covariant Script Runtime" Platform="x86" InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
55

66
<MajorUpgrade

release/wix/make.bat

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
@echo off
2+
cd %~dp0
13
candle .\ecs_wix.wxs -nologo
2-
light -ext WixUIExtension -b . -cultures:en-us .\ecs_wix.wixobj -out extended-covscript-x86.msi -nologo
4+
light -ext WixUIExtension -b . -cultures:en-us .\ecs_wix.wixobj -out extended-covscript-x64.msi -nologo
35
del /Q ecs_wix.wixobj
4-
del /Q extended_covscript_x86.wixpdb
6+
del /Q extended-covscript-x64.wixpdb

0 commit comments

Comments
 (0)