C # release directory stays empty

I have a C # application. I can debug the application, and Visual Studio C # writes debug files to bin / debug.

When I use the "built-in solution" to compile the application, C # shows no errors and says "Build successed" ... but the bin / release directory remains empty.

All other compiled applications do not have this problem.

Where did my compiled application go?

+3
source share
2 answers

Define your compilation Releasein the configuration manager.

alt text

+4
source

This may be a dumb question, but did you choose the Release configuration when creating your solution?

+1
source

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


All Articles