我有一个使用各种框架依赖项创建的 NuGet .nuspec。
根据这篇文章,依赖项之一是“dotnet”:
<group targetFramework="dotnet">
[dependencies here]
</group>
当我使用 NuGet 3.3 打包 .nuspec 文件时,打包的 nuspec 文件将“dotnet”替换为“.NETPlatform5.0”:
<group targetFramework=".NETPlatform5.0">
[dependencies here]
</group>
如果有的话,这里有什么影响?
我应该使用“dotnet”还是“.NETPlatform5.0”?