How to compile project in Visual Studio without running after build?

build, dll, execution, project, visual-studio

Solution

You can use the shortcut "CTRL+SHIFT+B" and it will just build without running.

Problem

How to compile project in Visual Studio without running after build? I'm compiling a dll extension, but Visual Studio is trying to run it (inconvenient), then an error occurs. Can I avoid this running?

Original source