Is there a way to create or rebuild a project only for a C # project

In Visual Studio 2005, you can right-click the C ++ project and select Project Only> Build Only [project].

Is there a way to do the same for a C # project? If I choose Buildfrom the context menu of the project, it will also build all the dependencies.

+3
source share
2 answers

Not necessarily - if the dependencies have not changed, they will not be restored. If you select "ReBuild", Visual Studio will also rebuild the dependencies, but you will find that the normal assembly will reuse existing dependency assemblies if the source code for these assemblies has not changed.

# . , , .

+2

. .

++ . # , , , .

+2

Source: https://habr.com/ru/post/1712479/


All Articles