1

Microsoft Visual Studio 2010を使用しています。アプリケーションをデバッグモードでビルドすると、EXEファイルが生成されます(想定どおり)。しかし、(私にとっては非常に驚くべきことですが)モードをデバッグモードからリリースモードに変更すると、コンパイラはアプリケーションを.DLLファイルとしてビルドしますか?

Visual Studio 2010を使い始めたのはごく最近なので、まだその方法がわかりません。これを修正して、リリースモードでコンパイルしているときに、アプリケーションを.exeファイルとしてビルドするにはどうすればよいですか?

4

2 に答える 2

4

Set your project type to Windows Application.

In the IDE, right click on your project, and select Properties. Configuration Properties->General->Configuration Type set to 'Application (.exe)'

于 2012-08-29T10:59:11.870 に答える
1

In project options you should be able to choose whether you're building a .DLL or .EXE. I thought these were the same for all configurations, but you can check to see for yourself.

于 2012-08-29T10:59:21.360 に答える