aboutsummaryrefslogtreecommitdiff
path: root/src/tools/test/WixToolsetTest.Heat/TestData/RegFile/input.xslt
diff options
context:
space:
mode:
authorBob Arnson <bob@firegiant.com>2025-04-24 21:32:49 -0400
committerBob Arnson <github@bobs.org>2025-06-18 16:15:49 -0400
commit50fe3d149a101b2569647689673fa01d67ff5267 (patch)
tree418fc10800ee23318d3ce7820aee1465b49c1db0 /src/tools/test/WixToolsetTest.Heat/TestData/RegFile/input.xslt
parent390ee54c29d050ba393ff431115308bdb2aaf4ca (diff)
downloadwix-50fe3d149a101b2569647689673fa01d67ff5267.tar.gz
wix-50fe3d149a101b2569647689673fa01d67ff5267.tar.bz2
wix-50fe3d149a101b2569647689673fa01d67ff5267.zip
Remove deprecated Heat.
Fixes https://github.com/wixtoolset/issues/issues/9039
Diffstat (limited to 'src/tools/test/WixToolsetTest.Heat/TestData/RegFile/input.xslt')
-rw-r--r--src/tools/test/WixToolsetTest.Heat/TestData/RegFile/input.xslt23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/tools/test/WixToolsetTest.Heat/TestData/RegFile/input.xslt b/src/tools/test/WixToolsetTest.Heat/TestData/RegFile/input.xslt
deleted file mode 100644
index 7a46243a..00000000
--- a/src/tools/test/WixToolsetTest.Heat/TestData/RegFile/input.xslt
+++ /dev/null
@@ -1,23 +0,0 @@
1<?xml version="1.0" encoding="utf-8"?>
2<xsl:stylesheet
3 version="1.0"
4 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
5 xmlns="http://www.w3.org/1999/xhtml"
6 xmlns:wix="http://wixtoolset.org/schemas/v4/wxs">
7
8 <xsl:output method="xml" indent="yes"/>
9
10 <xsl:template match="@*|node()">
11 <xsl:copy>
12 <xsl:apply-templates select="@*|node()"/>
13 </xsl:copy>
14 </xsl:template>
15
16 <xsl:template match="wix:Wix/wix:Fragment/wix:StandardDirectory/wix:Component/wix:RegistryKey/wix:RegistryValue[@Name='Classpath']">
17 <xsl:copy>
18 <xsl:apply-templates select="@*|node()"/>
19 <xsl:attribute name="Value"><xsl:text>%WAS_DEPS_CLASSPATH%\*;[DIR_JVM]service.jvm.web-standalone.jar</xsl:text></xsl:attribute>
20 </xsl:copy>
21 </xsl:template>
22
23</xsl:stylesheet>