Questions tagged [visual-studio-2013]

Visual Studio 2013 is a version of Microsoft's Visual Studio (also known as "Dev12", includes C++ compiler version 18.0). Do not use this tag unless you have a specific question about Visual Studio -- not just a coding issue.

The version of which follows , and is the predecessor to .

The preview for Visual Studio 2013 was announced at the Build 2013 conference and made available on June 26, 2013. It was made available to download on October 17, 2013.

Update 1 (Visual Studio 2013.1) was released on January 20, 2014.
Update 2 (Visual Studio 2013.2) was released on May 12, 2014.

Since May 22, 2014 the first CTP of Update 3 is available.
Since November 12, 2014 Update 4 RTM is available.
Since December 15, 2014 Update 5 CTP 1 is available.

Features:

  • .NET 4.5.1 support.
  • x86-64 Edit And Continue support.
  • Definition Peek.
  • Scrollbar improvements.
  • More...

What's new:

Community Edition:

Visual Studio Community 2013 is a new edition released at November 12, 2014. It includes all functionality of Visual Studio Professional 2013, designed and optimized for individual developers, students, open source contributors, and small teams.

18770 questions
7
votes
1 answer

Where does the default Visual Studio 2013 .gitignore reside?

So awhile ago I noticed that Visual Studio was automatically creating a .gitignore file whenever I created a solution inside an existing local git repo folder. Great. However, I noticed it was ignoring some NCrunch files (*.ncrunchsolution and…
Chris Simmons
  • 6,924
  • 5
  • 31
  • 47
7
votes
2 answers

MVC 5.1 debug enabled doesn't disable Bundling and minification

Running in debug from VS 2013.2RTM Pro, MVC 5.1 app. If the compilation mode is set to debug="true" it is supposed to disable Bundling and minification but it does not. When I examine the View source on a page the styles and scripts are…
Joe
  • 4,143
  • 8
  • 37
  • 65
7
votes
2 answers

Cannot rename files in Visual Studio

I cannot rename files in Solution Explorer any more, and I get no errors/dialogs. It just leaves the file with the original name. This also impacts folders (I can't rename them) and I also cannot cut/paste files & folders. Copy & delete work…
Robert MacLean
  • 38,975
  • 25
  • 98
  • 152
7
votes
1 answer

View all files changed since branch (TFS)

Using VS2013 and/or VisualStudio.com, is it possible after creating a branch ("Main" branched to "Dev001") to view a list of all the files that differ between "Main" and "Dev001"? For example, I'd like to see all the files that have been…
EvilDr
  • 8,943
  • 14
  • 73
  • 133
7
votes
2 answers

Visual Studio 2013 coexisting Ankh SVN and Git

I have two project. The older project (let call it A) is located in subversion repository and newer project B is located in Git repository. I work with both of these projects in Visual Studio 2013. I have read that the selection of Source control…
Tomas Kubes
  • 23,880
  • 18
  • 111
  • 148
7
votes
3 answers

VS2013 Account Sign In "Script Error" The Value of the property 'evt_LoginMobile_onload" is null or undefined

I am using Visual Studio 2013 on Windows 8.1, I already sign in with my Live ID. I try to connect to TFS, VS tries to show me login popup but I get a white popup window then a script error popup that says an error has occurred in the script on this…
Eray Aydogdu
  • 240
  • 1
  • 4
  • 16
7
votes
2 answers

Initializing a `static constexpr double` with MSVC 2013

Title says it all and both of the usual ways do not work. What am I missing? 1. class Cl { static constexpr double PI; }; constexpr double Cl::PI = 3.14; (26): error C2737: 'private: static double const Cl::PI' : 'constexpr' object must be…
Navin
  • 3,681
  • 3
  • 28
  • 52
7
votes
2 answers

Visual Studio 2013 reordering tabs

Every time I run my code on VS2013, my tabs get rearranged alphabetically and I have no idea why. I have Resharper 8.2 installed, I went through the settings but found nothing too evident that's messing with the tabs. Has anyone seen and / or solved…
Carlo
  • 25,602
  • 32
  • 128
  • 176
7
votes
1 answer

What are the repercussions of changing a ColdFusion-generated WSDL web service from RPC-encoded to document-literal?

I inherited a few web services that are WSDLs generated by ColdFusion 9. The CF9 default is RPC-encoded, so that's what they are. However, it's recently come to my attention that newer versions of the .NET framework (or maybe it's newer versions…
Nicole S.
  • 345
  • 1
  • 3
  • 12
7
votes
1 answer

Inherit from a class that has the copy constructor deleted

I have class base which only contains private default constructor and public deleted copy constructor, and nothing else. class base { private: base() = default; public: base(const base&) = delete; }; If I try to inherit from base and…
so61pi
  • 780
  • 2
  • 7
  • 21
7
votes
1 answer

Difference between Windows Phone project and Silverlight Windows Phone project in Visual Studio 2013

I recently updated my Visual Studio 2013 such now it allows to develop Windows Phone 8.1 applications. But now, when I create a Windows Phone project, it is systematically for WP 8.1 and I can't change the target. The only way I found in order to…
7
votes
1 answer

Visual Studio 2013 Tools for GIT - cannot publish an unpublished branch

I am attempting to use an existing GIT setup within VS2013 using Tools for Git extension. I believe the repositories and remotes are setup correctly because I can do what I need to using GitShell -- this has not presented any difficulties. I have…
David Tansey
  • 5,813
  • 4
  • 35
  • 51
7
votes
2 answers

How to change the .NET framework of a Xamarin project in Visual Studio

I am working on an app and I would like to change its .NET framework. Normally that would be under Properties->Application but I couldn't find it anywhere for Android or iOS applications. I am aware that I can create a new project and specify it…
YKa
  • 3,998
  • 4
  • 20
  • 31
7
votes
1 answer

MSBuild publish web project from command line does Package instead of FileSystem

I have a web project that I am publishing from the command line, using a publish profile that does a few additional tasks (excludes some files and folders, grunt, publishing another project in turn). One two machines (A and B), it works fine from…
Adam Marshall
  • 3,010
  • 9
  • 42
  • 80
7
votes
1 answer

How to make Visual Studio 2010 + 2012 + 2013 coexist together?

On my current machine , I need to have Visual Studio 2010 , 2012 & 2013 . Together . How can I make them coexist together , without one of them causing problems to the other ? Like one big happy family ... Much appreciated
JAN
  • 21,236
  • 66
  • 181
  • 318
1 2 3
99
100