Visual Studio IDE from the perspective of a UNIX programmer

I have been programming on Linux / UNIX for several years, but recently I had to do something in VS2008. It was hard for me to understand how VS works. Do you know any resources (preferred web pages, but books are also acceptable) that show me the big picture and explain at least some details? Examples are welcome, comparison with a typical UNIX stack is very welcome.

I do not need a language (C # / C ++ / VB / ...) link / manual; I saw some of them, and none of them seem to suggest how to work effectively with VS.

+3
source share
4 answers

MSBuild, Visual Studio. UNIX autoconfig script, Makefiles, VS2008 .

, , . configure script . ( "x86" "Release" ), , "Production" ), VS , Intellisense , , . "", , "DEBUG", , , , #ifdef DEBUG.

Visual Studio "", "". . Microsoft Enterprise Library, , (*.sln), . , , /, unit test .

, :

UNIX:
  #./configure
  # make
  # nano Makefile
  # make

VS2008:
  # ( " ", , , GUI)
  # ( "" )
  # ( )
  # ( "" )

+6

, :

  • Visual Studio
  • ( )
  • ( )
  • /
  • , ( )
+3

Visual Studio - . , - , .

- , , , .

, . .

VS - , . :

  • ( ),
  • ( , )

, . ReSharper, Dependancy Walker, .NET Reflector. ReSharper - , Dependancy Walker .NET Reflector - .

stackoverflow:

/ Microsoft Visual Studio?

Visual Studio

+1
source

Have you considered installing cygwin and gcc? If you want to write a console application, this may just do the trick.

0
source

Source: https://habr.com/ru/post/1715350/


All Articles