About 409,000 results
Open links in new tab
  1. Compile to a stand-alone executable (.exe) in Visual Studio

    Jan 9, 2010 · how can I make a stand-alone exe in Visual Studio. Its just a simple Console application that I think users would not like to install a tiny Console application. I compiled a simple cpp file using the visual studio command prompt. Will the exe work even if the .NET framework is not installed? I used native C++ code.

  2. c++ - How to use makefiles in Visual Studio? - Stack Overflow

    Oct 4, 2013 · Most well designed open source solutions provide a makefile with a setup action to generate Visual Studio Project Files for you so look for those first in your Makefile. Otherwise you need to drag and drop each file or group of files and folders into each New Project you create within Visual Studio. Hope this helps.

  3. How do I create a C project in visual Studio 2019?

    Jun 16, 2019 · As a precondition, you shall be able to create C++ project in VS, so make sure you have the right extensions installed. Create a new project (Shift+Ctrl+N), select Visual C++ and Console App. This will create a new console app with a default c++ main file. Remove that file and put in a main.c file. This can be compiled, and works just fine.

  4. C programming in Visual Studio - Stack Overflow

    Jan 6, 2017 · Yes, you very well can learn C using Visual Studio. Visual Studio comes with its own C compiler, which is actually the C++ compiler. Just use the .c file extension to save your source code. You don't have to be using the IDE to compile C. You can write the source in Notepad, and compile it in command line using Developer Command Prompt which ...

  5. How to make an installer for my C# application? - Stack Overflow

    I have created an application (C#, Windows Forms) on Visual Studio 2008, and now I want to make installer of this application.

  6. python - How to compile .py to .exe in Microsoft Visual Studio ...

    Nov 20, 2017 · How to compile .py to .exe in Microsoft Visual Studio Community 2017? Ask Question Asked 7 years, ...

  7. How do I run Visual Studio as an administrator by default?

    Jul 21, 2019 · 1- either from start menu or when visual studio is open in the task bar, right click on the VS icon. 2- in the context menu, right click again on the visual studio icon. 3- left click on prorperties . 4- choose advanced. 5- choose Run as Administrator. click ok all the windows, close the visual studio and reopen again.

  8. c++ - Cmake : CMAKE_MAKE_PROGRAM is not set - Stack Overflow

    Oct 12, 2017 · A make tool – like mingw32-make – is an extra program which is not part of the compiler but is sometimes bundled together with it. In your case it isn’t and you have to get it explicitly. I’d suggest using the msys2 environment because it allows easy access to everything you need (including the Ninja build system – a make replacement).

  9. How to create setup.exe file for window form application in visual ...

    Jun 11, 2019 · Using Visual Studio Installer (look @Hans Passant comment for the download). I will make a simple tutorial: 1 - Right click on Solution of your project > Add > New Project > Write on SearchBar "Setup" > Setup Project > Next > Create; 2 - Application Folder > Add > Project Output > Primary Output;

  10. How do I force my .NET application to run as administrator?

    May 12, 2010 · You'll want to modify the manifest that gets embedded in the program. This works on Visual Studio 2008 and higher: Project + Add New Item, select "Application Manifest File". Change the <requestedExecutionLevel> element to: <requestedExecutionLevel level="requireAdministrator" uiAccess="false" /> The user gets …

Refresh