gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-11-30 15:56:11 35 4
gpt4 key购买 nike

要在 Visual Studio Code 中设置我的 C# 开发框架,我想使用 System.Windows.Forms 引用来设置窗口。

代码:

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

我得到错误:

Missing Assembly Reference.

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

最佳答案

想通了,您可以将其添加到您的 .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>

关于c# - VS Code 中的 System.Windows.Forms 程序集引用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47412796/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com