我正在尝试找到一个好的构建系统或用我当前的构建系统修复可能的错误。每当我运行以下代码时:
Option Explicit On
Option Strict On
Module EmployeeBonus2
Sub Main
' Declare and initialize variables here
Dim numOne as Integer = 10
System.Console.WriteLine(10)
System.Console.Read()
End Sub
End Module
我收到以下错误
MSBUILD : error MSB1003: Specify a project or solution file. The current working directory does not contain a project or solution file.
有没有解决这个问题?我正在使用MSBuild包尝试在Sublime Text 2中构建它。它是一个.VB文件,所以我应该创建自己的构建系统,如果是的话,怎么做?
答案 0 :(得分:0)
下载Visual Studio社区版(它是免费的)然后创建一个VB.Net项目。
你可以在这里得到它: https://www.visualstudio.com/en-us/downloads/download-visual-studio-vs.aspx
创建项目结构和文件后,可以使用Sublime Text编辑.vb文件,并使用命令行中的MSBuild编译项目。
代码文件将以.vb结尾,项目文件将以.vbproj结尾。
安装Visual Studio后,在Visual Studio中编辑和编译代码可能会更容易。 Visual Studio还为您提供了一个调试器。
使用'F5'功能键从Visual Studio编译和运行代码。