Tools, FAQ, Tutorials:
Release Build of VC# Code in Visual Studio 2017
How to make a release build of the final executable code of my VC# application in Visual Studio 2017?
✍: FYIcenter.com
If you want to make a final release build of your VC# application in Visual Studio 2017,
you can follow this tutorial:
1. Click "Build > Clean Solution" menu. You see debugging files removed.
2. Change the build configuration from "Debug" to "Release" in the menu area.
3. Click "Build > Build Solution" menu. You should see no build errors.
4. Go to a command console and run final executable code. You should see your application running.
>\fyicenter\vcs2017\ClickMeWpfVcs\ClickMeWpfVcs\bin\Release\ClickMeWpfVcs.exe
⇒ Windows Forms App with VC# in Visual Studio 2017
⇐ WPF App with VC# Code in Visual Studio 2017
2017-08-08, 1723🔥, 0💬
Popular Posts:
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...
How to use the "set-body" Policy Statement for an Azure API service operation? The "set-body" Policy...
FYIcenter JSON Validator and Formatter is an online tool that checks for syntax errors of JSON text ...
How To Pad an Array with the Same Value Multiple Times in PHP? If you want to add the same value mul...
How To Loop through an Array without Using "foreach" in PHP? PHP offers the following functions to a...