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.
24 lines
661 B
24 lines
661 B
<?xml version="1.0"?> |
|
<Template author="Daniel Grunwald" version="1.0"> |
|
|
|
<Config |
|
name = "${res:Templates.File.MsBuild.Name}" |
|
icon = "Icons.32x32.XMLFileIcon" |
|
category = "${res:Templates.File.Categories.Misc}" |
|
defaultname = "Build${Number}.proj" |
|
language = "XML"/> |
|
|
|
<Description>${res:Templates.File.MsBuild.Description}</Description> |
|
|
|
<Files> |
|
<File name="${FullName}" language="XML"><![CDATA[<?xml version="1.0"?> |
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTarget="Build"> |
|
<Target Name="Build"> |
|
|
|
</Target> |
|
</Project>]]> |
|
</File> |
|
</Files> |
|
|
|
<AdditionalOptions/> |
|
</Template>
|
|
|