Skip to content

Commit

Permalink
Fixing installer
Browse files Browse the repository at this point in the history
  • Loading branch information
jessehouwing committed Nov 25, 2018
1 parent d47f730 commit caeeae1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -188,3 +188,4 @@ IntegrationTests.Plugin/TfsAggregator2IntegrationTest.zip
Setup.Aggregator/_clisrv.g.properties
nuget.exe
**/launchSettings.json
*.binlog
4 changes: 2 additions & 2 deletions Setup.Aggregator/T2018.xslt
Expand Up @@ -18,14 +18,14 @@
<!--Give Component ID prefix -->
<xsl:template match="wix:Component/@Id">
<xsl:attribute name="{name()}">
<xsl:value-of select="concat('F2019_', .)" />
<xsl:value-of select="concat('F2018_', .)" />
</xsl:attribute>
</xsl:template>

<!--Give File ID prefix -->
<xsl:template match="wix:File/@Id">
<xsl:attribute name="{name()}">
<xsl:value-of select="concat('F2019_', .)" />
<xsl:value-of select="concat('F2018_', .)" />
</xsl:attribute>
</xsl:template>

Expand Down
4 changes: 2 additions & 2 deletions Setup.Aggregator/T2019.xslt
Expand Up @@ -18,14 +18,14 @@
<!--Give Component ID prefix -->
<xsl:template match="wix:Component/@Id">
<xsl:attribute name="{name()}">
<xsl:value-of select="concat('F2018_', .)" />
<xsl:value-of select="concat('F2019_', .)" />
</xsl:attribute>
</xsl:template>

<!--Give File ID prefix -->
<xsl:template match="wix:File/@Id">
<xsl:attribute name="{name()}">
<xsl:value-of select="concat('F2018_', .)" />
<xsl:value-of select="concat('F2019_', .)" />
</xsl:attribute>
</xsl:template>

Expand Down
1 change: 1 addition & 0 deletions tfs-aggregator-plugin.sln
Expand Up @@ -76,6 +76,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "HeatTransforms", "HeatTrans
Setup.Aggregator\T2017.2.xslt = Setup.Aggregator\T2017.2.xslt
Setup.Aggregator\T2017.xslt = Setup.Aggregator\T2017.xslt
Setup.Aggregator\T2018.xslt = Setup.Aggregator\T2018.xslt
Setup.Aggregator\T2019.xslt = Setup.Aggregator\T2019.xslt
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "FilesToInstall", "FilesToInstall", "{61340591-23E3-4B33-9E23-8669CBC235A9}"
Expand Down

0 comments on commit caeeae1

Please sign in to comment.