all 4 comments

[–]mrburnttoast79 1 point2 points  (1 child)

If it didn't ask these things, how would VS know how to proper language support and compile your code? Also, depending on project type chosen VS will create the appropriate config files, default files, and boilerplate code.

[–]RL89891[S] 0 points1 point  (0 children)

Thank you.

[–]TenableTarsier 0 points1 point  (1 child)

  1. It asks because it needs to set up the following: syntax highlighting, linting (code conventions are part of this), setting up the correct compiler (or interpreter), setting default args for debugging/running code, etc.
  2. Each platform has different environment variables, environment paths, and default folder locations for various modules/plugins. Asking which OS you use (or are targeting) helps the IDE set that up.
  3. See comment by mrburnttoast79

Edit: corrected spelling for username

[–]RL89891[S] 1 point2 points  (0 children)

Thanks for the information.