Skip to content

Commit d24c65d

Browse files
committed
Pre-commit CI
1 parent fa2f5e0 commit d24c65d

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Installer/releaseFiles.xslt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3-
xmlns:wix="http://schemas.microsoft.com/wix/2006/wi">
2+
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:wix="http://schemas.microsoft.com/wix/2006/wi" version="1.0">
43
<xsl:output method="xml" indent="yes"/>
5-
64
<xsl:template match="@*|*">
75
<xsl:copy>
86
<xsl:apply-templates select="@*|*" />
97
</xsl:copy>
108
</xsl:template>
11-
129
<!-- Persistent file Id for main executable -->
1310
<xsl:template match="wix:File[@Source = 'SourceDir\PasteIntoFile.exe']">
1411
<xsl:copy>
1512
<xsl:attribute name="Id">
16-
<xsl:value-of select='"mainExecutable"'/>
13+
<xsl:value-of select="&quot;mainExecutable&quot;" />
1714
</xsl:attribute>
1815
<xsl:apply-templates select="@*[not(name()='Id')]" />
1916
<xsl:apply-templates select="*" />

0 commit comments

Comments
 (0)