标签: nuget nuget-package nuget-spec
我试图摆脱NuGet包中的 Bin 文件夹,但保留了结构。
我的nuspec文件的一部分:
<file src = "**\*.dll"/>
我的当前包裹产生: PROJECT1 \ BIN \ *。dll的 项目2 \ BIN \ *。DLL
期望的结果: PROJECT1 \ *。dll的 项目2 \ *。DLL
谢谢。
答案 0 :(得分:0)
尝试:<file src="bin\*.dll" target=".\" />
<file src="bin\*.dll" target=".\" />