开发者

Deal with assemblies references when using Team Foundation Server

I use TFS 2010 and I'm having to change references of assemblies that I build from Debug to Release when I merge into the Main or Release branch.

When working on the Dev branch, I use the Debug assemblies, but I merge down to the Main or Release branch I need to manually change, and it's really time consuming.

Has anyone got best practices, or soluti开发者_JAVA百科ons?


Why dont you refer to them using:

<Reference Include="Assembly">
  <HintPath>..\$(Configuration)\Assembly.dll</HintPath>
</Reference>

Then you dont need to change anything.


If the assemblies are identical I suppose the only difference between a *.csproj in Dev & the same *.csproj in Main/Release would be something like:

<Reference Include="Assembly">
  <HintPath>..\Debug\Assembly.dll</HintPath>
</Reference>

and then

<Reference Include="Assembly">
  <HintPath>..\Release\Assembly.dll</HintPath>
</Reference>

As a first step, you could create a small console application that automates this with find & replace in all the project files involved. You could then run this app each time you do a merge.
The only thing you would need from TFS-SDk is the ability to checkout the *.csproj files.


(Another possible angle: Do you really need the Debug-version of the assembly in the DEV-branch?)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜