chore: format and slightly fix xml/xslt
This commit is contained in:
parent
46a6d30f70
commit
472afff0a2
3 changed files with 28 additions and 28 deletions
20
.vscode/about.xml.xslt
vendored
20
.vscode/about.xml.xslt
vendored
|
@ -1,24 +1,24 @@
|
|||
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
<xsl:output method="xml" encoding="utf-8" indent="yes"/>
|
||||
<xsl:strip-space elements="*"/>
|
||||
|
||||
<xsl:stylesheet version="1.0"
|
||||
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
|
||||
<xsl:output method="xml"
|
||||
encoding="utf-8"
|
||||
indent="yes" />
|
||||
<xsl:strip-space elements="*" />
|
||||
<!-- Match ModMetaData and its descendants, modify modVersion element -->
|
||||
<xsl:template match="/Project/PropertyGroup/ModMetaData|ModMetaData/@*[not(name()='Id')]|ModMetaData//node()">
|
||||
<xsl:template match="/Project/PropertyGroup/ModMetaData|ModMetaData/@*|ModMetaData//node()">
|
||||
<xsl:copy>
|
||||
<xsl:apply-templates select="@*[not(name()='Id')]|node()"/>
|
||||
<xsl:apply-templates select="@*|node()" />
|
||||
</xsl:copy>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Modify modVersion element using the value of VersionPrefix -->
|
||||
<xsl:template match="ModMetaData/modVersion">
|
||||
<modVersion>
|
||||
<xsl:copy-of select="@*" />
|
||||
<xsl:value-of select="/Project/PropertyGroup/VersionPrefix"/>
|
||||
<xsl:value-of select="/Project/PropertyGroup/VersionPrefix" />
|
||||
</modVersion>
|
||||
</xsl:template>
|
||||
|
||||
<!-- Remove other elements and attributes -->
|
||||
<xsl:template match="@*|node()">
|
||||
<xsl:apply-templates/>
|
||||
<xsl:apply-templates />
|
||||
</xsl:template>
|
||||
</xsl:stylesheet>
|
3
.vscode/mod.csproj
vendored
3
.vscode/mod.csproj
vendored
|
@ -25,8 +25,9 @@
|
|||
<supportedVersions>
|
||||
<li>1.4</li>
|
||||
</supportedVersions>
|
||||
<modVersion IgnoreIfNoMatchingField="True">
|
||||
<!-- Gets automatically populated with VersionPrefix (see above) -->
|
||||
<modVersion IgnoreIfNoMatchingField="True" />
|
||||
</modVersion>
|
||||
<url />
|
||||
<modDependencies />
|
||||
<modDependenciesByVersion>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
<?xml version="1.0"?>
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ModMetaData>
|
||||
<packageId>dev.tobot.mod-template</packageId>
|
||||
<name>Mod Template</name>
|
||||
|
@ -9,7 +9,6 @@
|
|||
<supportedVersions>
|
||||
<li>1.4</li>
|
||||
</supportedVersions>
|
||||
<!-- Gets automatically populated with VersionPrefix (see above) -->
|
||||
<modVersion IgnoreIfNoMatchingField="True">0.1.0.0</modVersion>
|
||||
<url/>
|
||||
<modDependencies/>
|
||||
|
|
Loading…
Reference in a new issue