只是一个简单无聊的DLL,不是作为.Net项目创建的,它需要某种版本控制。是否可以使用Nuget工具为此创建Nuget包?
答案 0 :(得分:0)
您可以将任何文件作为内容添加到nuget包中。它将被复制到项目输出中。
你可以在这里查看: https://docs.microsoft.com/en-us/nuget/schema/nuspec#including-content-files
示例nuspec:
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2012/06/nuspec.xsd">
<metadata>
<id>PackageId</id>
<version>1.0.0</version>
<authors>Example</authors>
<owners>Example</owners>
<dependencies>
</dependencies>
<contentFiles>
<files include="any/any/yourdllfolder/**/*" buildAction="None" copyToOutput="true" />
</contentFiles>
</metadata>
</package>