我在 ubuntu 上,我使用 VSCode 和 .NET CORE,我用命令面板安装了一个名为 Otter 的包。
我的 .csproj 现在是这样的:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Otter" Version="0.9.8.926"/>
</ItemGroup>
我的主要 .cs 文件是:
using System;
using Otter;
namespace helloWorldFromCSharp
{
class Program
{
static void Main(string[] args)
{
Console.WriteLine("Hello");
}
}
}
但是当我尝试使用以下方式构建我的项目时:
dotnet build
我收到此错误:
Program.cs(2,7): error CS0246: The type or namespace name 'Otter' could not be found (are you missing a using directive or an assembly reference?) [/home/erwan/Documents/helloWorldFromCSharp/helloWorldFromCSharp.csproj]
我不知道如何解决它。
FFIVE
翻阅古今
相关分类