我正在创建我的demo.csproj
的nuget包我已将system.configuration
分开添加到此项目中,
我知道我可以将此
system.configuration.dll
添加到我的nuget中 使用添加<dependencies>
标记或y<file>
标记的方法.nuspec
档案, 但有没有其他方法,如copy local=true
,而是使用<dependencies>
或''标签?
答案 0 :(得分:4)
要引用标准.NET Framework程序集,请将以下内容添加到 .nuspec 文件中:
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Configuration" />
</frameworkAssemblies>