如何使用 Visual Studio 代码引用程序集?
How to reference assemblies using Visual Studio Code?
我想在我使用 OSX 上的 Visual Studio 代码编写的控制台应用程序中引用 System.Drawing.dll。即我想使用这些 using 语句
using System.Drawing;
using System.Drawing.Imaging;
避免此构建错误
Program.cs(56,20): error CS0246: The type or namespace name `Bitmap' could not be found. Are you missing an assembly reference?
我找不到这方面的教程,我什至不知道该 dll 是否在 .net core 或 mono 或任何使用的 visual-studio-code 中可用。
Mono 提供了一个您可以利用的 WinForms pipeline implementation,包括对 System.Drawing
的支持。
在您的 .csproj 文件中,将您的依赖项作为 PackageReference
添加到 ItemGroup
,然后 运行 dotnet restore
或 nuget restore
。示例:
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Xamarin.iOS" />
<PackageReference Include="Realm" Version="2.1.0" />
<PackageReference Include="xunit">
<Version>2.3.1</Version>
</PackageReference>
</ItemGroup>
查看 this article 以获得完整的解释。
新的 .NET Core SDK 还原命令是 dotnet restore
要在Visual Studio代码中添加任何汇编引用,请参考我的。
我想在我使用 OSX 上的 Visual Studio 代码编写的控制台应用程序中引用 System.Drawing.dll。即我想使用这些 using 语句
using System.Drawing;
using System.Drawing.Imaging;
避免此构建错误
Program.cs(56,20): error CS0246: The type or namespace name `Bitmap' could not be found. Are you missing an assembly reference?
我找不到这方面的教程,我什至不知道该 dll 是否在 .net core 或 mono 或任何使用的 visual-studio-code 中可用。
Mono 提供了一个您可以利用的 WinForms pipeline implementation,包括对 System.Drawing
的支持。
在您的 .csproj 文件中,将您的依赖项作为 PackageReference
添加到 ItemGroup
,然后 运行 dotnet restore
或 nuget restore
。示例:
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Xml" />
<Reference Include="System.Core" />
<Reference Include="Xamarin.iOS" />
<PackageReference Include="Realm" Version="2.1.0" />
<PackageReference Include="xunit">
<Version>2.3.1</Version>
</PackageReference>
</ItemGroup>
查看 this article 以获得完整的解释。
新的 .NET Core SDK 还原命令是 dotnet restore
要在Visual Studio代码中添加任何汇编引用,请参考我的