为什么 Visual Studio 和 nuget.exe 不共享相同的库?
Why doesn't Visual Studio and nuget.exe share the same libraries?
,但命令行工具只是一个 exe (nuget.exe)。
他们不共享公共图书馆有什么原因吗?这似乎引入了允许 dll 和 exe 之间的代码分歧的风险。
Visual Studio 和 NuGet.exe 共享一个名为 NuGet.Core.dll 的公共库。 NuGet 3.0 发生了一些变化,但它们仍然共享 dll。
NuGet.exe 已将 NuGet.Core.dll 合并到其中,而不是单独的文件。
他们不共享公共图书馆有什么原因吗?这似乎引入了允许 dll 和 exe 之间的代码分歧的风险。
Visual Studio 和 NuGet.exe 共享一个名为 NuGet.Core.dll 的公共库。 NuGet 3.0 发生了一些变化,但它们仍然共享 dll。
NuGet.exe 已将 NuGet.Core.dll 合并到其中,而不是单独的文件。