我在用:
dotnet pack MyProject.csproj
用于创建 nuget netstandard/net462 包,它适用于简单的用例。
如何配置 MyProject.csproj 以在“构建”nuget 级别包含文件?或者我可以从 .csproj 添加对 nuspec 文件的引用吗?
这就是它在 .nuspec 文件中的样子:
<package>
<files>
<file src="Libs\*.*" target="build" />
</files>
</package>
相关分类