Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

wix: combine svg.wxs into icons.wxs

Changeset e53b082e90e7

Parent 775d29271642

by Steve Borho

Changes to 2 files · Browse files at e53b082e90e7 Showing diff from parent 775d29271642 Diff from another changeset...

 
51
52
53
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
55
56
 
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
@@ -51,6 +51,37 @@
  <File Name="thg_logo.ico" />   <File Name="thg_logo_92x50.png" />   <File Name="TortoiseMerge.ico" /> + + <File Name="archive.svg" /> + <File Name="back.svg" /> + <File Name="clean.svg" /> + <File Name="clone.svg" /> + <File Name="commit.svg" /> + <File Name="down.svg" /> + <File Name="error.svg" /> + <File Name="fallback.svg" /> + <File Name="find.svg" /> + <File Name="fonts.svg" /> + <File Name="forward.svg" /> + <File Name="goto.svg" /> + <File Name="help.svg" /> + <File Name="left.svg" /> + <File Name="leftright.svg" /> + <File Name="log.svg" /> + <File Name="merge.svg" /> + <File Name="modified.svg" /> + <File Name="mqdiff.svg" /> + <File Name="mqpatch.svg" /> + <File Name="quit.svg" /> + <File Name="reload.svg" /> + <File Name="rename.svg" /> + <File Name="right.svg" /> + <File Name="success.svg" /> + <File Name="sync.svg" /> + <File Name="tag.svg" /> + <File Name="up.svg" /> + <File Name="update.svg" /> + <File Name="warning.svg" />   </Component>   </Directory>  
Change 1 of 1 Show Entire File win32/​wix/​svg.wxs Stacked
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?> -<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> - - <?include guids.wxi ?> - - <Fragment> - <DirectoryRef Id="INSTALLDIR"> - - <Directory Id="IconsDirectory" Name="icons" FileSource="$(var.SourceDir)"> - - <Component Id='SvgIcons' Guid='$(var.SvgIcons.guid)'> - <File Name="archive.svg" KeyPath="yes" /> - <File Name="back.svg" /> - <File Name="clean.svg" /> - <File Name="clone.svg" /> - <File Name="commit.svg" /> - <File Name="down.svg" /> - <File Name="error.svg" /> - <File Name="fallback.svg" /> - <File Name="find.svg" /> - <File Name="fonts.svg" /> - <File Name="forward.svg" /> - <File Name="goto.svg" /> - <File Name="help.svg" /> - <File Name="left.svg" /> - <File Name="leftright.svg" /> - <File Name="log.svg" /> - <File Name="merge.svg" /> - <File Name="modified.svg" /> - <File Name="mqdiff.svg" /> - <File Name="mqpatch.svg" /> - <File Name="quit.svg" /> - <File Name="reload.svg" /> - <File Name="rename.svg" /> - <File Name="right.svg" /> - <File Name="success.svg" /> - <File Name="sync.svg" /> - <File Name="tag.svg" /> - <File Name="up.svg" /> - <File Name="update.svg" /> - <File Name="warning.svg" /> - </Component> - </Directory> - - </DirectoryRef> - </Fragment> - -</Wix>