在 NuGet nuspec 中使用 "dotnet" 或“.NETPlatform5.0”?
Use "dotnet" or ".NETPlatform5.0" in NuGet nuspec?
我创建了一个带有各种框架依赖项的 NuGet .nuspec。
基于 this 文章,依赖项之一是 "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”?
我创建了一个带有各种框架依赖项的 NuGet .nuspec。
基于 this 文章,依赖项之一是 "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”?