gpt4 book ai didi

c# - 努盖特/MSBuild : Build for multiple 3rd Party DLL versions

转载 作者:行者123 更新时间:2023-11-30 18:05:04 26 4
gpt4 key购买 nike

场景如下:我有多个版本的第 3 方 DLL(具体来说,第三方产品每年发布一个版本)。我需要能够为这些 DLL 的多个不同版本构建,以便部署不同版本的应用程序。

我发现我可以像这样使用 MS-Build 实现此目的:

<ItemGroup Condition=" '$(Configuration)' == '2009 Release' ">
<Reference Include="thirdPartyLib">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib_2009\thirdPartyLib.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
<ItemGroup Condition=" '$(Configuration)' == '2010 Release' ">
<Reference Include="thirdPartyLib">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\lib_2010\thirdPartyLib.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>

但是我认为检查是否有一种使用 Nu-Get 处理这种情况的简单方法也很值得。任何关于使用 Nu-Get 或 MS-Build 甚至 Powershell 执行此操作的想法都将不胜感激。

最佳答案

我认为这是不可能的,但我确实在论坛上找到了这篇帖子:

http://nuget.codeplex.com/discussions/253168

这似乎是一个合理的要求 - 当然有调试/发布版本。可能值得添加到该帖子,或在问题跟踪器中创建请求以查看团队是否会考虑为此提供支持。

关于c# - 努盖特/MSBuild : Build for multiple 3rd Party DLL versions,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5892615/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com