Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual studio project build dependencies with no references? [duplicate]

Possible Duplicate:
Setting up a build dependency without using a reference?

Is it possible to set a project to force another project to be built, but without having to setup a reference?

like image 769
Paul Avatar asked May 19 '10 20:05

Paul


People also ask

What is the difference between Dependencies and references in Visual Studio?

They are basically no different, they are used to store and manage references. Just as Lex said, the Dependencies is a better way to represent different types of references, we can clearly know where the reference comes from, SDK, nuget, etc. so that we can manage our references more efficiently.

How do I fix broken references in Visual Studio?

To fix a broken project reference by correcting the reference path. In Solution Explorer, right-click your project node, and then select Properties. The Project Designer appears. If you're using Visual Basic, select the References page, and then click the Reference Paths button.


1 Answers

Right-click on your solution and choose Project dependencies. This allows you to set a build time dependency between projects, without referencing.

like image 70
Franci Penov Avatar answered Nov 05 '22 22:11

Franci Penov