Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 10th, 2012  |  syntax: None  |  size: 0.71 KB  |  hits: 11  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. When to use <ProjectReference> in project files?
  2. #using <foo.dll>
  3.        
  4. Project("{C4ABA494-43D0-400A-9917-20E167A12CFD}") = "Foo", "...Foo.vcxproj", "{5A42640E-9E0A-442B-8A40-AA91AD5444AC}"
  5.     ProjectSection(ProjectDependencies) = postProject
  6.         ...
  7.         {2CE32AE0-B129-40BA-B06E-A628FA149AB3} = {2CE32AE0-B129-40BA-B06E-A628FA149AB3}
  8.     EndProjectSection
  9. EndProject
  10. ...
  11. Project("{C4ABA494-43D0-400A-9917-20E167A12CFD}") = "baz", "...baz.csproj", "{2CE32AE0-B129-40BA-B06E-A628FA149AB3}"
  12.     ProjectSection(ProjectDependencies) = postProject
  13.         ...
  14.     EndProjectSection
  15. EndProject
  16.        
  17. <ProjectReference Include="... foo.csproj">
  18.     <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
  19. </ProjectReference>