|
|
|
@ -14,7 +14,7 @@
@@ -14,7 +14,7 @@
|
|
|
|
|
|
|
|
|
|
<!-- Actions --> |
|
|
|
|
<Actions> |
|
|
|
|
<Open filename = "Main.vb"/> |
|
|
|
|
<Open filename = "Program.vb"/> |
|
|
|
|
</Actions> |
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -22,16 +22,10 @@
@@ -22,16 +22,10 @@
|
|
|
|
|
<Project language = "VBNet"> |
|
|
|
|
<ProjectItems> |
|
|
|
|
<Reference Include="System" /> |
|
|
|
|
<Reference Include="System.Data" /> |
|
|
|
|
<Reference Include="System.Deployment" /> |
|
|
|
|
<Reference Include="System.Xml" /> |
|
|
|
|
|
|
|
|
|
<Import Include="Microsoft.VisualBasic" /> |
|
|
|
|
<Import Include="System" /> |
|
|
|
|
<Import Include="System.Collections" /> |
|
|
|
|
<Import Include="System.Collections.Generic" /> |
|
|
|
|
<Import Include="System.Data" /> |
|
|
|
|
<Import Include="System.Diagnostics" /> |
|
|
|
|
<Import Include="System.IO" /> |
|
|
|
|
</ProjectItems> |
|
|
|
|
|
|
|
|
|
<PropertyGroup> |
|
|
|
@ -39,11 +33,20 @@
@@ -39,11 +33,20 @@
|
|
|
|
|
</PropertyGroup> |
|
|
|
|
|
|
|
|
|
<Files> |
|
|
|
|
<File name="Main.vb"> |
|
|
|
|
<File name="Program.vb"> |
|
|
|
|
<![CDATA[${StandardHeader.VBNET} |
|
|
|
|
Module Main |
|
|
|
|
Option Strict On |
|
|
|
|
Option Explicit On |
|
|
|
|
|
|
|
|
|
Module Program |
|
|
|
|
Sub Main() |
|
|
|
|
Console.WriteLine("Hello World!") |
|
|
|
|
Console.WriteLine(Path.GetFileName(GetType(Program).Assembly.Location)) |
|
|
|
|
Console.WriteLine() |
|
|
|
|
|
|
|
|
|
' TODO: Implement Functionality Here |
|
|
|
|
|
|
|
|
|
Console.Write("Press any key to continue . . . ") |
|
|
|
|
Console.ReadKey(false) |
|
|
|
|
End Sub |
|
|
|
|
End Module |
|
|
|
|
]]></File> |
|
|
|
|