Visual Studio 2012 is the latest version in Microsoft's Visual Studio product line

learn more… | top users | synonyms (4)

0
votes
0answers
13 views

How do I fix Azure Websites to stop confusing .Net Framework 4.5 with 4?

I am using Visual Studio 2012 to publish a simple Asp.Net MVC 4 project using Continuous Publishing in TFS online and I am getting the error: 1 error(s), 0 warning(s) Exception Message: The ...
1
vote
1answer
8 views

VS 2012: Change color of selected text when context-menu is open

In Visual Studio 2012, I know that the color scheme for the Text Editor can be changed at TOOLS -> Options -> Environment -> Fonts and Colors. However, what I can't find is this: When selecting a ...
0
votes
4answers
30 views

Can I compile and debug (run) a single C++ file in Visual Studio 2012? (How to avoid creating too many projects)

I'm learning C++ out of a book and using Visual Studio 2012. In order to follow the book's exercises, I need to make multiple .cpp files with the main() function inside them. Is there any way I can ...
0
votes
0answers
10 views

Cocos2dx for Windows Phone : VS2012 raise bunch of errors

I am porting a game based on Cocos2dx from iOS to Windows Phone 8. The problem here is after I change the fix all the errors of differences of API, I got a bunch of syntax errors, undeclared variable ...
0
votes
1answer
19 views

Multithread Windows Service

How and where do I multithread my code. I currently have a Windows service that collects events from the Windows System log. The service forwards collected events to a remote service. My code is in ...
0
votes
0answers
11 views

EF5, code first exception ONLY on first database access: “FK_x…x' is not a constraint. Could not drop constraint”

This has been driving me crazy for days. I am using vs2012, EF5 code first, sql server 2012. This is on my development machine and I get the below exception when, and ONLY when, I hit the database ...
0
votes
0answers
14 views

Visual Studio display mode error

I am trying to create windows store app using Visual Sudio 2012. Every time I try to run display mode I get this error: System.Runtime.InteropServices.COMException This app can't be activated by ...
0
votes
1answer
24 views

Visual Studio 2012 does not load files in a project included using wildcards

I included some files in my .csproj file using a wildcard (editing the .csproj file manually), like this: <ItemGroup> <Compile Include="Class1.cs" /> <Compile ...
3
votes
1answer
106 views

How to avoid multiple Publish Profiles in Visual Studio 2012 project files?

What is the best way to avoid having different users on our team contribute changes to .csproj files that include references to their local Publish Profiles? We recently migrated to 2012 and our ...
1
vote
1answer
335 views

MVC 4 - cannot create database using NuGet Package manager console

I'm trying to create a new database using Visual Studio 2012 NuGet package manager console. I have done all the steps to enable migration, the Migrations folder was successfully created, and its ...
2
votes
4answers
359 views

Visual Studio 2012 Line-Number/Outlining Gutter Missing

The gutter that runs down the left hand side of the code display has disappeared from my install of visual studio 2012. Bellow is a picture of my current install which is missing the gutter and inset ...
0
votes
1answer
96 views

Durandal js 1.2.0 with Hottowel SPA doesnt scroll on iPhone

I have started a new MVC4 HotTowel SPA test project with a list (ul element) in the Details page. This worked ok when viewing with an iPhone - it scrolled ok. Then I used nuget to update the 3 ...
0
votes
1answer
6 views

HTML/Unicode characters in .resx files are not rendered correctly in HTML?

When I add these codes checkmark codes (http://www.fileformat.info/info/unicode/char/2713/index.htm) &#10003; or &#x2713; or as someone already suggested: &#10004; In my Visual ...
0
votes
0answers
25 views

Why Visual Studio doesn't like this XML schema? (Prefix '' cannot be mapped to namespace name reserved for “xml” or “xmlns”)

FictionBook (also known as FB2) is an XML-based format of electronic books. Its schema can be found here: http://gribuser.ru/xml/fictionbook/2.0/xsd/ However, when I downloaded this schema and ...
0
votes
0answers
19 views

MVSC deletes lib and dll when building exe

I have a create a new solution in MVS with two project: an exe application and its dynamic library. For the Release configuration I made the linker create the exe, dll and lib inside the same folder. ...
0
votes
3answers
12 views

Team Foundation Server: Why is changeset history shared among separate projects?

I've been using TFS for a few months now and have a few separate (unrelated) projects on the web interface, and linking the associated projects in Visual Studio 2012. The anomaly I'm experiencing (at ...
0
votes
0answers
6 views

msbuild: property to control the build of non-neutral resources

I would like to be able to set a property, lets say <SkipResourcesBuildAndCopy>$(BuildingInsideVisualStudio)<SkipResourcesBuildAndCopy> That would then be picked up in the CoreResGen ...
0
votes
0answers
9 views

How scaffold Durandal SPA app with VS 2012

I'm starting to develop an application based on Hot Towel project template. The question is how I can scaffold Durandal? Thanks for any suggestion!
1
vote
1answer
29 views

VS 2012 launching app based on wrong path

I have a app which is under source control (TFS 2012 also) on c:\Dev\MyApp\Main. Because im developing a new feature I decided to open a branch on c:\Dev\MyApp\BranchNewFeature. I developed and when ...
0
votes
1answer
37 views

Error in SQL query in Visual Studio 2012

I am trying my hand at writing something that can be used at work and am learning on my own. I've run into an issue that I cannot find a solution to, although it's very possible that I am just ...
0
votes
0answers
9 views

Creating Item Template in Visual Studio 2012 with multiple, non-nested files

I'm looking to create a new Visual Studio 2012 Item Template that generates five files, three of which are nested, one which isn't. It should look like this: MyView1.View MyView1.view.cs ...
1
vote
1answer
26 views

Expression to include by file name but exclude by same folder name

I'm trying to figure out how to configure VS Code Coverage Run Settings to include only target libraries but not test libraries and not 3rd party libraries: Syntax is the following: <Include> ...
2
votes
1answer
42 views

Always force Referenced DLL to update?

I'm working on a solution that produces some DLLs. Let's say Project A produces A.dll. Project B uses A.dll to perform some functions. When Project B is ran, it checks if A.dll exists in the output ...
0
votes
0answers
103 views

Unable to add service in WcfTestClient when copy to a different machine

I'd like to run WcfTestClient (one that's included with VS2012) on a different machine without installing VS2012. Is this possible? On the machine I've installed .NET 4.5 but when I try to add web ...
8
votes
2answers
3k views

Insert a new GUID to Visual Studio 2012

Is it possible to create a code snippet or something similar to automate the process of generating and inserting GUIDs in to the text editor in Visual Studio 2012? I frequently need to generate new ...
1
vote
1answer
33 views

How to use lazy with instance variable

given the code below public class classA { int someid ; public classA( int x ) { someid = x; } Lazy<myType> lazymt1 = new Lazy<myType>( return ...
1
vote
3answers
739 views

Visual Studio 2012 - using .runsettings to exclude assemblies from code coverage

When running code coverage for my solution which contains multiple projects, I noticed that Code Coverage includes also my test assemblies. I found an article which suggests the following template ...
0
votes
1answer
13 views

Office 2010 PIA not being installed

I am writing an application in VB.NET that will send emails using outlook. My problem is that I need the Office 2010 PIA to do this. The following are the steps I have already tried (I am using Visual ...
5
votes
4answers
503 views

How do I exclude service references from code coverage using the runsettings file in Visual Studio 2012?

I'm using a custom runsettings file to control what projects are inspected for code coverage. I used the default template provided by Microsoft and have so far been able to exclude the items I want ...
0
votes
0answers
20 views

Passing Multiple Values to a single Crystal Reports parameter from VB.net

I am using Visual Basic in Visual Studio 2012 with Crystal Reports for Visual Studio. I have a parameter in a Crystal Report that can accept multiple values (for instance: Regions). How do I pass ...
13
votes
2answers
672 views
+100

Debug .NET Framework Source Code in Visual Studio 2012?

I am using Visual Studio 2012. I want to Debug .NET Framework source code. I have tried nearly all the options but I am still getting There is source code available for Current Location. Symbols are ...
0
votes
1answer
27 views

CUDA fmod - calling a __host__ function from a __global__ function is not allowed

I'm compiling a CUDA 5 project with VS2012 and I'm receiving this error: error : calling a __host__ function("fmod<float, int> ") from a __global__ function is not allowed The compiler is ...
3
votes
0answers
20 views

Designer crash for Visual Studio 2012 Windows Phone

I recently switched from VS2010 to VS2012. The designer crashes every time even after re installing the SDK. Following exception is thrown : System.NullReferenceException Object reference not set ...
-7
votes
1answer
37 views

Error c4430 ? visual studio 2012 [closed]

I am new to creating and i try to use visual studio 2012 #include #include main() { printf("MY NAME"); getch(); } Error 1 error C4430: missing type specifier - int assumed. ...
0
votes
0answers
38 views

Visual C++: stop symbols from being exported

I'm working on a dll project and am using the following to clean up some of my exported symbol names: #pragma comment(linker, "/EXPORT:Some_function=_Some_function@4") where Some_function is ...
0
votes
1answer
9 views

Deploying non-MVC website to IIS7 (Windows 2008) server from Visual Studio 2012

Is there a documentation or how-to on deploying non-MVC website from Visual Studio 2012? I have seen some saying to use references (bin directory) which is all I need for Visual Studio 2012 but I ...
2
votes
1answer
50 views

ASP.NET Web Tools 2012.2

I'm attempting to create a project in Visual Studio 2012 Express Web. Even after installing this update I still get a failure message when trying to create a new project/website. Including the ones ...
0
votes
1answer
37 views

Adding a SQL Server CE dataset to reportviewer in VS 2012 express C#

Hello all and thanks in advance for reading. I am using VS 2012 express coding in C# and have an issue when adding data from a dataset (I use SQL Server CE) to a reportview. My code is this: private ...
0
votes
1answer
36 views

Jasmine in a separate test project

Is it practical/possible to separate jasmine tests into a separate visual studio project? I am just getting started with angular, and am trying to write my tests before I start on the actual ...
-3
votes
0answers
82 views

What is the difference between c# 4.0 and 4.5 [closed]

I want to learn C#. I have a little experience in c/c++ . I am planning to buy a book about c# 4.5 . But, in my language, there is not any book for c# 4.5(or c# 4.5 with visual studio 2012). There is ...
2
votes
0answers
19 views

DirectX SDK project - porting to VS2012

I'm porting to visual studio 2012 a solution with a project which uses some headers from the directX SDK in this path: C:/../Microsoft DirectX SDK (June 2010)/Samples/C++/DXUT11/Core the problem ...
0
votes
1answer
30 views

Add dll reference, permission?

I'm new to asp.net and I am trying to use the framework SolidConverter. I did the installation and reference, however when running the application gives the following error Failed to load C: \ Users ...
0
votes
0answers
7 views

MFC in Visual Studio 2012 - afx.h file not found

I created an new static library project in VS 2012, with option MFC selected. It created few files in the project, stdafx.h, targetver.h, stdafx.cpp. However in stdafx.h there are includes for afx.h, ...
0
votes
1answer
9 views

Creating a Visual Studio project template that references external libraries

We're attempting to create a new project template that has references to external libraries like StructureMap and Entity Framework. However, when we create a project from the template the libraries ...
1
vote
0answers
13 views

Selenium Frameworks and Remote Testing, recommended framework?

I installed and played around with Selenium WebDriver on Visual Studio 2012 (C#) last week and was very impressed by how easy it was to automate browser testing. I now want to find out if I can expand ...
1
vote
0answers
61 views

table isn't showing up in VisualStudio 2012

I used Visual Studio 2010 and I am now returning to use 2012 and the book I am using is based for 2010, so a few things are different as far as instructions, but not much. However, my problem is that ...
2
votes
1answer
35 views

Unable to use Dotfuscator with application referencing Microsoft.Bcl.Async

To support XP one of my projects is now targeting the .NET 4.0 and using Microsoft.Bcl.Async for the async features of .NET 4.5. The trouble is, I am not longer able to obfuscate the resulting ...
0
votes
0answers
3 views

Visual Studio 2012 Command Line Building - Detecting Build Failures

I'm setting up a build server for a Visual Studio 2012 project and I'm trying to add detection for failed builds so the server can properly recover after a build failure and notify users of the ...
0
votes
0answers
17 views

Why is there a huge delay when my T4 template creates designer files?

I am using a T4 template with T4 Toolbox within Visual Studio 2012 to generate about 100 files and add them to the project. I have two templates, one of which outputs a .cs file, the other outputs a ...
0
votes
1answer
17 views

is it a kind of bug telerik rad control?

Hi; i have been developed a wp8 application using telerik. I have a radModalWindow generator. Every things works good. But Telerik is confused Transparent color setting.(i guess) My Code below; ...

1 2 3 4 5 141