VSCode C#问题添加程序集参考

时间:2018-02-19 23:35:32

标签: c# reference visual-studio-code nuget nuget-package

我安装了C#VSC扩展以及NuGet Package Manager。这是我的VSC版本信息:

首先,我使用以下命令在VSC中创建一个全新的控制台应用程序:

  

dotnet新控制台

这给了我代码:

using System;

namespace ReferenceTest
{
    class Program
    {
        static void Main(string[] args)
        {
            Console.WriteLine("Hello World!");
        }
    }
}

我现在想创建一个using System.Windows.Forms;引用。然而,当我开始使用using语句键入时,智能使我失望:

enter image description here

我已经找到了this question/answer但是在步骤#5中显示的自动填充选项不存在: enter image description here

当我尝试即兴创作并遵循我在搜索中找到的其他说明时使用

  

NuGet包管理器:添加包

选项,我无法选择System.Windows.Forms enter image description here

我已根据多个网站的说明查找了project.json文件,但我只能找到project.assets.json文件,它看起来与我在示例中看到的非常相似找。这个问题不仅适用于System.Windows.Forms,还适用于其他参考资料。

1 个答案:

答案 0 :(得分:0)

.NET Core不支持Windows窗体和WPF应用程序,仅.NET Framework中不支持。

看看以下文章:

https://stackify.com/net-core-vs-net-framework/