gpt4 book ai didi

xamarin - 在 VS2015 中,如何创建使用 .net 标准的 Xamarin xaml 表单项目?

转载 作者:行者123 更新时间:2023-12-02 13:51:54 24 4
gpt4 key购买 nike

我不清楚如何将 .net core 和 .net standard 合并到空白的 xamarin xaml 表单应用程序中。有人可以帮我解决一下吗?

执行此操作,启动 Visual Studio 2015,创建 Visual C#/跨平台/空白 Xaml 应用程序 (Xamarin.Forms Portable) 项目。完成后,集成 .Net Core 和 .Net Standard

最佳答案

完全抄袭http://motzcod.es/ ,但是放在这里,因为如果我只是链接到内容,我就会被标记。对不起詹姆斯...

从 DNX 迁移到 .NET Core CLI 的链接 - https://learn.microsoft.com/en-us/dotnet/articles/core/migrating-from-dnx

将 PCL 升级到 netstandard 后,您将获得如下的 project.json:

{
"supports": {},
"dependencies": {
"Microsoft.NETCore.Portable.Compatibility": "1.0.1",
"NETStandard.Library": "1.6.0"
},
"frameworks": {
"netstandard1.4": {}
}
}

现在,我们需要做的就是添加一个特殊的“导入”标志以及我们想要在 netstandard 配置文件下使用的 PCL

{
"supports": {},
"dependencies": {
"Microsoft.NETCore.Portable.Compatibility": "1.0.1",
"NETStandard.Library": "1.6.0"
},
"frameworks": {
"netstandard1.4": {
"imports": [
"portable-net45+wp80+win8+wpa81"]
}
}
}

这个小导入标志本质上告诉 NuGet 该包将完全与支持此功能的 PCL 一起使用。现在您应该可以开始安装您想要的任何 PCL NuGet 了:

enter image description here

再次直接抄袭 James Montemagno http://motzcod.es/ 。完全归功于作者。

关于xamarin - 在 VS2015 中,如何创建使用 .net 标准的 Xamarin xaml 表单项目?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39043673/

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