You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
872 B
19 lines
872 B
<?xml version="1.0"?> |
|
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:Conversion="urn:Conversion"> |
|
<xsl:output method = "xml" indent = "yes" /> |
|
|
|
<xsl:template match = "/VisualStudioProject/*" > |
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> |
|
|
|
<!-- Configurations --> |
|
<xsl:for-each select="Build/Settings/Config"> |
|
<xsl:element name = "PropertyGroup" > |
|
<xsl:attribute name = "Condition"> '$(Configuration)|$(Platform)' == '<xsl:value-of select = "@Name" />|AnyCPU' </xsl:attribute> |
|
|
|
<xsl:element name = "StartProgram"><xsl:value-of select = "@StartProgram" /></xsl:element> |
|
<xsl:element name = "StartArguments"><xsl:value-of select = "@StartArguments" /></xsl:element> |
|
</xsl:element> |
|
</xsl:for-each> |
|
</Project> |
|
</xsl:template> |
|
</xsl:stylesheet>
|
|
|