Questions tagged [visual-studio-2015]

Visual Studio 2015 is the version of Microsoft's Visual Studio product suite which follows 2013 version (also known as "Dev14", includes C++ compiler version 19.0). Use this tag if you have a specific question about Visual Studio 2015 features and functionality, not just a question reading your code.

The version of Visual Studio which follows . The Release to Market (RTM) version of Visual Studio 2015 has been made available from July 20th 2015.

Visual Studio 2015 includes a variety of improvements, including better use of the Roslyn compiler tools, simplified community versions and plugin support for the community edition, better cross-platform development support and an improved debugger1.

Visual Studio is followed by , which was released on March 7th 2017

###More Information:

19634 questions
8
votes
2 answers

c# visual studio build exe with target anycpu but that determines its platform(x86/x64) on the calling process platform(x86/x64)

We have a software in 32 and 64 bits that calls our exe and passes events to it(like a plugin). The thing is that our exe has to execute in the same bitness(x86/x64) as the calling software (if the software is run in 32 bits version our exe must run…
VSP
  • 2,367
  • 8
  • 38
  • 59
8
votes
3 answers

How to disable JavaScript debugging in VS2015

I have been trying very hard to debug with VS2015 but there is this javascript that keeps getting on the way. Have turned off the Just-In-Time script but still it is running thru the javascript without debugging on the breakpoint that I have set. So…
tangara
  • 81
  • 1
  • 6
8
votes
6 answers

Cant hit breakpoint in web api controller

When i try to debug this code : // POST: api/Events [HttpPost] public async Task PostEvent([FromBody] object savedEvent) { Event addedEvent = JsonConvert.DeserializeObject(savedEvent.ToString()); …
8
votes
1 answer

Create Visual Studio Keyboard Shortcut that include Mouse Click

Is it possible to create a short cut in Visual Studio that includes a left mouse click? Currently, Ctrl + Left Click short cuts to Go to Declaration. I'd like to map Ctrl + Shift + Left Click to Go to Implementation. I know I can create a keyboard…
Philip Pittle
  • 11,821
  • 8
  • 59
  • 123
8
votes
3 answers

How to fake "visibility of class" (not of functions) in C++?

There is no feature that control visibility/accessibility of class in C++. Is there any way to fake it? Are there any macro/template/magic of C++ that can simulate the closest behavior? Here is the situation Util.h (library) class Util{…
javaLover
  • 6,347
  • 2
  • 22
  • 67
8
votes
4 answers

Why Won't Visual Studio let me use a Templatized, constexpr Function in enable_if?

So I've boiled this down to the minimal, complete, verifiable example and it seems that Visual Studio 2015 just won't allow me to use a templatized, constexpr function in an enable_if. For example: template constexpr bool condition() {…
Jonathan Mee
  • 37,899
  • 23
  • 129
  • 288
8
votes
3 answers

Visual Studio 2015 Build and Run Keyboard Shortcut

In older versions of Visual Studio by pressing CTRL+F5 the C++ project was built and Run after build, automatically. In VS 2015 first you need to build the project and then run the project because CTRL+F5 does not compile the project anymore. …
Mario
  • 13,941
  • 20
  • 54
  • 110
8
votes
1 answer

WINAPI C/C++ -> why did the binary size increase dramatically ? (Switch from VS2013 to VS 2015)

Even though I know I will probably get bashed for asking this question I'll still go ahead and ask it since it literally drives me nuts. I'm hoping maybe one of you has some insight on the matter. Compiling MS's WIN32 default ('non-empty' setting)…
PIp3dr3am
  • 91
  • 3
8
votes
2 answers

Add->REST API Client... command fails in VS2015

I want to add a RESTful API to my UWP project. But I get the following error in VS2015 when clicking OK in the Add->REST API Client dialog: Generating client code and adding to project started Generate client code for REST API with following…
Yanbo Chen
  • 93
  • 1
  • 4
8
votes
3 answers

Installation : Microsoft Visual C++ Redistributable stuck at 'Processing: Windows7_MSU_X64'

I'm trying to install the package of Microsoft Visual C++ Redistributable as my xampp apache module cannot be installed. The installation take a very long time to complete. What should I do? Is this common and is all I have to do is wait? They are…
Iman Yasmin
  • 447
  • 2
  • 11
  • 31
8
votes
1 answer

How can I add a UWP target to an existing Xamarin Forms project?

I have an existing Xamarin Forms app that's setup to build for Android and iOS. I want to add a UWP target so I can see how the app performs on Windows. I assume I can do this without having to create a new UI for Windows? I'm using Visual Studio…
parsley72
  • 8,449
  • 8
  • 65
  • 98
8
votes
1 answer

Lambda Works on Latest Visual Studio, but Doesn't Work Elsewhere

So I've written a nasty lambda to satisfy a "shortest amount of code necessary to achieve this" question: values.resize(distance( begin(values), remove_if(begin(values), end(values), [i = 0U, it = cbegin(intervals), end =…
Jonathan Mee
  • 37,899
  • 23
  • 129
  • 288
8
votes
1 answer

VC 2015 U3 - ASSERT crashes the application

VS 14.0.25431.01 Update 3 Windows 10 - 10.0.10240 Build 10240 Steps: Create a new MFC application. Add ASSERT( 0 ), in CAboutDlg::CAboutDlg, for instance. Build debug version. Run without debugging (Ctrl + F5). Click About -> The program is…
zdf
  • 4,382
  • 3
  • 18
  • 29
8
votes
1 answer

Updating Microsoft.NETCore.App to v1.1.0 causes -2147450749 (0x80008083)

I created a new .NET Core project in Visual Studio 2015 by following the instructions at: https://www.microsoft.com/net/core#windowsvs2015 It works OK, and I can add breakpoints etc. no problem. Then I ran Tools->NuGet Package Manager->Manage NuGet…
Greg Barlow
  • 198
  • 11
8
votes
3 answers

How do I make Visual Studio display "auto" types

So, when I use auto keyword in VS2015 with something simple, like this: As you can see, it shows the variable's type, but, when I try something a bit more complex (or defined in another file?), it freaks out and gives me some not-so-useful…
ARentalTV
  • 344
  • 1
  • 12
1 2 3
99
100