VS Code中的System.Windows.Forms程序集引用

时间:2017-11-21 12:09:05

标签: c# visual-studio-code

在visual studio代码中为c#设置我的开发框架, 我想使用System.Windows.Forms引用来设置窗口。

代码:

using System;
using System.Collections;
using System.Windows.Forms;
namespace Softwaredevelopment
{
   public partial class Form1 : Form
   {
      public Form1()
      {
        //tbd
      }
   }
}

我收到错误:

  

缺少装配参考。

我必须在project.json文件或.csproj文件中添加什么内容 获得创建窗口的能力。

1 个答案:

答案 0 :(得分:3)

想出来,你可以将它添加到你的.csproj中 您还可以在此处找到名称和版本C:\ Windows \ assembly

  <Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <OutputType>Exe</OutputType>
    <TargetFramework>netcoreapp2.0</TargetFramework>
    <TargetFramework>net452</TargetFramework>
  </PropertyGroup>
  <ItemGroup>
    <PackageReference Include="System.Drawing-dotnet-core" Version="1.2.3"/>

    <Reference Include="System.Windows.Forms" version="2.0.0.0" /> //< ----- add This line here

  </ItemGroup>
</Project>