How do you determine which executables and DLL files a C # Visual Studio project creates?

How do you determine which executables and DLL files a C # Visual Studio project creates?

In Visual Studio 2010, where do you go to find out what executable file name the project is creating.

+3
source share
2 answers

A C # project will produce only one assembly output (DLL or EXE). Additional assemblies will be included from links that are not installed in the GAC. For example, if you add a link to another project in the solution, it will copy the assembly of this project to the current bin folder of the project.

Check the bin folder after the build to see what was created and enabled. eg<project folder>/bin/Debug

+2
source

, <AssemblyName> .csproj. <OutputType> .

+1

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


All Articles