-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configured "file harvesting" for the windows installer.
It automatically converts the build result into components.
- Loading branch information
Showing
7 changed files
with
108 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<xsl:stylesheet version="1.0" | ||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | ||
|
||
<xsl:output omit-xml-declaration="yes" indent="yes"/> | ||
|
||
<xsl:param name="exeName" select="'ezBadminton.exe'"/> | ||
|
||
<xsl:template match="node() | @*"> | ||
<xsl:copy> | ||
<xsl:apply-templates select="node() | @*"/> | ||
</xsl:copy> | ||
</xsl:template> | ||
|
||
|
||
<!-- Rename the client executable to ezBadminton.exe and make that name the Id of the File element to be able to create a shortcut for it --> | ||
<xsl:template match="node()[local-name()='File'][@*[local-name()='Source'] = 'SourceDir\ez_badminton_admin_app.exe']/@*[local-name()='Id']"> | ||
<xsl:attribute name="{name()}" namespace="{namespace-uri()}"> | ||
<xsl:value-of select="$exeName"/> | ||
</xsl:attribute> | ||
<xsl:attribute name="Name" namespace="{namespace-uri()}"> | ||
<xsl:value-of select="$exeName"/> | ||
</xsl:attribute> | ||
</xsl:template> | ||
</xsl:stylesheet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
|
||
<xsl:stylesheet version="1.0" | ||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | ||
|
||
<xsl:output omit-xml-declaration="yes" indent="yes"/> | ||
|
||
<xsl:param name="exeName" select="'ezBadmintonServer.exe'"/> | ||
|
||
<xsl:template match="node() | @*"> | ||
<xsl:copy> | ||
<xsl:apply-templates select="node() | @*"/> | ||
</xsl:copy> | ||
</xsl:template> | ||
|
||
|
||
<!-- Rename the server executable to ezBadmintonServer.exe --> | ||
<xsl:template match="node()[local-name()='File']/@*[local-name()='Id']"> | ||
<xsl:attribute name="Name" namespace="{namespace-uri()}"> | ||
<xsl:value-of select="$exeName"/> | ||
</xsl:attribute> | ||
</xsl:template> | ||
</xsl:stylesheet> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters