MsBuild failing when aliasing a dll reference with multiple projec

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all,

I am trying to compile / rebuild a solution with msbuild to be part of our
continuous integration.

One of the projects aliases a referenced project to resolve confilicting
namespaces. The problem ocurrs when MsBuild afterwards uses this same alias
for the reminder of projects who reference this project.

Can anybody help me with this? is it a bug or do i need to set something
that I have missed.

It works when is compiled with VS2005

Thanks

Juan Blanco
 
I have a found a HACK to solve the problem, when creating the alias for the
dll if you put "global, yourAliasName" when the aliases get used on different
projects will also use the default global allowing your project to compile.
 
Back
Top