我在Linux(基于Ubuntu的elementaryOS)上,并同时安装了.NET Core(3.0.100)和Mono(6.4.0.198)。对于C#开发,我使用带有Omnisharp扩展名的VS Code。我正在尝试使用Xamarin.Forms构建sample project。
我的问题是,即使我可以使用Mono成功地构建项目,Omnisharp仍在抱怨缺少Xamarin.Forms参考:
The type or namespace name 'Forms' does not exist in the namespace 'Xamarin' (are you missing an assembly reference?) (CS0234)
我检查了它,它包含在.csproj
中:
<ItemGroup>
<PackageReference Include="Xamarin.Forms" Version="4.2.0.709249" />
</ItemGroup>
我的怀疑是Omnisharp可能尝试与.NET Core而不是Mono进行通信。 (由于我需要定位一个.NET Framework版本,因此必须使用Mono来构建它。)这就是我使用Mono来构建项目的方式:
$ nuget restore
$ cd GameOfLife/GameOfLife
$ msbuild
$ cd ../GameOfLife.Android
$ msbuild /t:Build,Install
我知道我无法使用.NET Core构建项目,但是我至少尝试获取nuget包:
$ dotnet restore
→ ./GameOfLife/GameOfLife/GameOfLife.Android/GameOfLife.Android.csproj :
warning NU1503: Skipping restore for project './GameOfLife/GameOfLife
/GameOfLife.Android/GameOfLife.Android.csproj'. The project file may be
invalid or missing targets required for restore. [./GameOfLife/GameOfLife.sln]
$ cd GameOfLife/GameOfLife.Android
$ dotnet restore
→ (nothing happened)
$ dotnet add GameOfLife.Android.csproj package Xamarin.Forms
→ ./GameOfLife/GameOfLife/GameOfLife.Android/GameOfLife.Android.csproj(85,3):
error MSB4019: The imported project "/usr/share/dotnet/sdk/3.0.100/Xamarin
/Android/Xamarin.Android.CSharp.targets" was not found. Confirm that the path
in the <Import> declaration is correct, and that the file exists on disk.
→ Unable to create dependency graph file for project 'GameOfLife.Android.csproj'.
Cannot add package reference.
最后一个错误意味着Xamarin.Android仅针对Mono安装(不可能针对.NET Core安装),但我不知道这是否阻止Xamarin的安装表单,还是仅仅是相关错误。
答案 0 :(得分:0)
在关闭并重新打开VS Code?后问题不再存在