作者:贱男人少勾引天d_483 | 来源:互联网 | 2023-01-30 11:17
移植到.NET标准版本,您可能与可移植库相同,但支持的平台可能不是.
例如,.NET standard 1.6
可能是最便宜的api可用的最低版本Profile47
.Profile47
支持.net 4.5或更高版本,nut .NET Standard 1.6
仅支持4.6.1及更高版本!
使用新的msbuild 15 csproj/fsproj (也是VS2017)进行新的多目标定位是否可以同时编译可移植库和.Net标准以使转换更容易?
1> jbtule..:
是的,但它并不像交叉编译那样明显.netstandard
带有.net45
或.net40
作为不容易的绰号为您的便携式库中预定义.
在新的sdk的Microsoft.NET.TargetFrameworkInference.targets中它说:
对于不支持推理的情况,可以如下明确指定标识符,版本和配置文件:
portable-net451+win81;xyz1.0
.NETPortable
v4.6
Profile44
Xyz
TargetFrameworkProfile你可以从旧的csproj/fsproj中获得.这是您的便携式库的配置文件标识符.您也可以从Nuget Target Frameworks中查找它.
TargetFrameworkIdentifier很简单,就是这样.NETPortable
TargetFrameworkProfile也许可以从旧的csproj/fsprog中获取.但你也可以检查C:\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETPortable\
和检查v4.0
,v4.5
以及v4.6
个人资料目录,找到你的个人资料.这些目录的列表如下:
V4.0
Profile1/ Profile143/ Profile2/ Profile3/ Profile4/ Profile6/
Profile102/ Profile147/ Profile225/ Profile328/ Profile41/ Profile88/
Profile104/ Profile154/ Profile23/ Profile336/ Profile42/ Profile92/
Profile131/ Profile158/ Profile24/ Profile344/ Profile46/ Profile95/
Profile136/ Profile18/ Profile240/ Profile36/ Profile47/ Profile96/
Profile14/ Profile19/ Profile255/ Profile37/ Profile5/
V4.5
Profile111/ Profile259/ Profile49/ Profile7/ Profile75/ Profile78/
V4.6
Profile151/ Profile157/ Profile31/ Profile32/ Profile44/ Profile84/
您为便携式目标选择的绰号是什么?是和否,重要的是自动包装nuget,因此最好使用Nuget Target Frameworks中的值,但需要注意一点.我不确定是不是因为最新版本的nuget,但它似乎想要将TargetFrameworkVersion添加到portable
绰号中.因此Profile47
,v4.0
实际应该是portable40-net45+sl5+win8
添加编译器的另一个项定义了使用DefineConstants可能会发现哪些有用.你可以把它做成任何你想要的东西,它在历史上一直是大写的PROFILEXXX,只需将它添加到条件组.
$(DefineConstants);PROFILE47
最后要注意的是,默认的Reference包括没有提供,所以你必须添加自己的.
CSharp示例
netstandard1.6;portable40-net45+sl5+win8
YOUR DESCRIPTION
YOUR COMPANY
YOUR AUTHORS
YOUR COPYRIGHT
YOUR VERSION
YOUR VERSION
YOUR PROJECT URL
YOUR LICENSE
YOUR TAGS
True
True
True
True
YOUR NUGET VERSION
.NETPortable
v4.0
Profile47
$(DefineConstants);PROFILE47
F#示例
*警告:F#需要测试版的Mono for Mac或Visual Studio 2017预览15.3目前这个fsproj.此外,对示例的更改包括PackageReference FSharp.Compiler.Tools
和FSharp.Core
4.1最后一个可移植支持的FSharp版本(这是相对较新的版本).
netstandard1.6;portable40-net45+sl5+win8
YOUR DESCRIPTION
YOUR COMPANY
YOUR AUTHORS
YOUR COPYRIGHT
YOUR VERSION
YOUR VERSION
YOUR PROJECT URL
YOUR LICENSE
YOUR TAGS
True
True
True
True
YOUR NUGET VERSION
.NETPortable
v4.0
Profile47
$(DefineConstants);PROFILE47