consoleproject.xpt

来自「全功能c#编译器」· XPT 代码 · 共 44 行

XPT
44
字号
<?xml version="1.0"?>
<Template originator   = "Shinsaku Nakagawa"
          created      = "11/28/2002"
          lastModified = "02/01/2003">

	<!-- Template Header -->
	<TemplateConfiguration>
		<Name>${res:Templates.Project.ConsoleProject.Name}</Name>
		<Category>VBNET</Category>
		<Icon>VB.Project.DOSProject</Icon>
		<LanguageName>VBNET</LanguageName>
		<Description>${res:Templates.Project.ConsoleProject.Description}</Description>
	</TemplateConfiguration>
	
	<!-- Actions -->
	<Actions>
		<Open filename = "Main.vb"/>
	</Actions>
	
	<!-- Template Content -->
	<Combine name = "${ProjectName}" directory = ".">
		<Options>
			<StartupProject>${ProjectName}</StartupProject>
		</Options>
		
		<Project name = "${ProjectName}" directory = ".">
			
			<Options Target = "Exe" PauseConsoleOutput = "True"/>
			
			<Files>
		<File name="Main.vb">
			<![CDATA[${StandardHeader.VBNET}
Imports System
Module Main
	Sub Main()
		Console.WriteLine("Hello World!")
	End Sub
End Module
]]></File>
			</Files>
		</Project>
	</Combine>
</Template>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?