0

我们正在公司中开发一些 Web 应用程序,所有这些 Web 应用程序都引用了我们团队开发的库。

上周我们决定将我们的库移动到本地 NuGet 存储库,以便更轻松地管理版本。

直到今天早上一切都很好。今天我们想为我们的一个 Web 应用程序添加一个新功能,为了实现这一点,我们意识到我们需要在我们的库中进行开发,该库也作为 nuget 包添加到 Web 应用程序项目中。

但是在将新代码添加到库并编译并将新 dll 复制到 Web 应用程序的 bin 文件夹之后;Visual Studio 还原 nuget 版本的 dll。(我认为自动包还原会导致这种情况)

我们不想在不确定代码是否正常的情况下创建新包并发布到本地 Nuget Repo。所以现在,我们很困惑。

4

1 回答 1

0

Read the part about "pre-release" versions here:

http://docs.nuget.org/docs/reference/versioning

I think you need to

1. pre-release (publish) your packages to nuget
2.  have a handful of developers get that package by using the "–IncludePrerelease"
3.  once verified, publish the package (not as "pre-release") version.
于 2013-10-11T14:07:11.690 回答