我无法使用Visual Studio Code在Debian上构建以下应用程序。我错过了什么?
project.json
{
"version": "1.0.0-*",
"description": "ParseAB2Steps Console Application",
"authors": [ "" ],
"tags": [ "" ],
"projectUrl": "",
"licenseUrl": "",
"tooling": {
"defaultNamespace": "ParseAB2Steps"
},
"dependencies": {
},
"commands": {
"ParseAB2Steps": "ParseAB2Steps"
},
"frameworks": {
"dnx451": { },
"dnxcore50": {
"dependencies": {
"Microsoft.CSharp": "4.0.1-beta-23516",
"System.Collections": "4.0.11-beta-23516",
"System.Console": "4.0.0-beta-23516",
"System.Linq": "4.0.1-beta-23516",
"System.Threading": "4.0.11-beta-23516",
"System.IO": "4.0.11-beta-23516"
}
}
}
}
Program.cs的
using System;
using System.IO;
namespace ParseAB2Steps
{
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("Press enter to read ab2steps.md");
Console.Read();
string ab2steps = File.ReadAllText("/home/ab2/Dropbox/nodes/ab2/ab2-steps.md");
}
}
}
我在dnu build
上收到此错误:
/home/ab2/projects/ParseAB2Steps/Program.cs(13,31): DNXCore,版本= v5.0错误CS0103:名称'文件'在...中不存在 当前的背景
构建失败。
注意:我通过复制上一行中的版本手动将System.IO行放在project.json中,并且能够成功执行dnu restore
。
我也知道新的dotnet
cli并且我没有升级到它,因为据我所知,Debian没有直接支持。所以,我正在使用我目前拥有的dnx
环境。
编辑2:
的输出
dnvm list
Active Version Runtime Architecture OperatingSystem Alias
------ ------- ------- ------------ --------------- -----
1.0.0-rc1-update1 coreclr x64 linux
* 1.0.0-rc1-update1 mono linux/osx default
1.0.0-rc2-16312 mono linux/osx
答案 0 :(得分:3)
将依赖关系从System.IO
更改为System.IO.FileSystem
对我来说非常有用。
您也可以将System.IO
留在文件中,但无论如何它都会被引入,因为它是少数其他程序集的依赖项,包括System.Console
和System.IO.FileSystem
。