Share via

A few Microsoft Visual Studio IDE questions

Abdulqadir Aliyev 136 Reputation points
2022-12-28T17:48:22.193+00:00

Hi. I got a few questions about Microsoft VS (Not VSCode).

1. Install Version
There are 3 versions of Microsoft Visual Studio: Community, Professional and Enterprise. But which one should I really install? I want to do some C++ and C# coding: creating executables, which do actually have a user interface, rather than a regular command-prompt style window.

2. Is it free?
Is Microsoft Visual Studio free, or which version is free?

3. How do I not make Visual Studio create SLN and PDB files, but only an EXE?

Developer technologies | Visual Studio | Setup
Developer technologies | Visual Studio | Other
Developer technologies | Visual Studio | Other

A family of Microsoft suites of integrated development tools for building applications for Windows, the web, mobile devices and many other platforms. Miscellaneous topics that do not fit into specific categories.

{count} votes

Answer accepted by question author
  1. Castorix31 91,746 Reputation points
    2022-12-28T18:03:49.41+00:00

    If you want the free version, install Community
    SLN is the Solution file (solution-dot-sln-file)
    PDB is for debugging (whats-inside-a-pdb-file)
    If you compile in Release, you will get a .EXE which can be run alone (with Runtimes); if you don't use any external libraries
    See vscpp-step-0-installation to install Workload for C++ Desktop apps

    1 person found this answer helpful.
    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.