Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Build C++/C# created with Visual Studio 2012 without VS 2012 being installed?

If I have a Visual Studio Solution file of VS2012 with few C++ native projects and a few C# projects, can I build this solution without installing Visual Studio 2012 itself?

This would ease (among other things) the maintenance on our Build-Server nodes.

like image 437
Martin Ba Avatar asked Apr 04 '13 11:04

Martin Ba


People also ask

What is the best way to build a C++ program?

Hướng dẫn build chương trình C/C++ bằng GCC thông qua Terminal cơ bản từng bước chi tiết. Nhìn lại quá khứ, lúc mà các IDE còn chưa phát triển, lập trình viên phải thủ công build source code thông qua Terminal với các trình biên dịch C/C++ như gcc, g++.

What is the difference between build and compile in C++?

There is no use in compiling alone as it does not produce the final excutable and hence you need to build always. Show activity on this post. Build is the complete process of converting source code into an executable, for C++ compilation is the conversion of source code into object code.

What tools do I need to build C and C++ apps?

Build modern C and C++ apps for Windows using tools of your choice, including MSVC, Clang, CMake, and MSBuild By downloading, you agree to the licensing terms for the Visual Studio edition you select below.

What is C++ for Visual Studio Code?

C/C++ for Visual Studio Code. C/C++ support for Visual Studio Code is provided by a Microsoft C/C++ extension to enable cross-platform C and C++ development on Windows, Linux, and macOS.


1 Answers

You will need to install VS2012 Express. Based on Microsoft documentation: The Windows SDK no longer ships with a complete command-line build environment. You must install a compiler and build environment separately. If you require a complete development environment that includes compilers and a build environment, you can download Visual Studio 2012 Express, which includes the appropriate components of the Windows SDK.

like image 174
SoftwareCarpenter Avatar answered Sep 18 '22 00:09

SoftwareCarpenter