visual-studio-2012

Visual Studio 2012 project always out of date (.cs modified)

十年热恋 提交于 2020-01-14 12:13:40
问题 We have one project that is used in nearly all other projects in our solution and for some time the whole solution is always rebuild, because a source file in this one project seems to be modified. 1>Project 'Utilities' is not up to date. Input file '[...]\utilities\logging\result.cs' is modified after output file '[...]bin\Debug\Utilities.pdb'. But the file isn't modified at all nor any other file in this project. Has anyone a hint for me where the problem could be located? Thanks in advance

Remote Debug Win8 Surface App from VS2012

。_饼干妹妹 提交于 2020-01-14 09:52:47
问题 I'm trying to debug a Windows Store app from within VS2012 on a Microsoft Surface RT tablet. Both the desktop development system and the Surface tablet are on the same subnet (191.168.1.x). I've installed the Remote Debugging Tools for ARM on the tablet, and can fire up the Remote Debugging Monitor on it. When I try to Find the tablet from within the VS2012 project's Debug property page, nothing is found (i.e., the find process can't locate the tablet). From running ipconfig on the tablet I

How do I use the DOM Explorer in Visual Studio Express 2012 RC for Windows 8

Deadly 提交于 2020-01-14 09:41:52
问题 Has anyone been able to use the DOM Explorer to debug their Win 8 apps? I do not see a DOM Explorer tab when debugging as described here: http://msdn.microsoft.com/en-us/library/windows/apps/hh696632.aspx 回答1: Use the Debug > Windows > DOM Explorer menu command to show the DOM Explorer tab. 来源: https://stackoverflow.com/questions/12692357/how-do-i-use-the-dom-explorer-in-visual-studio-express-2012-rc-for-windows-8

Microsoft.Internal.Assumes+InternalErrorException: Internal error occurred

依然范特西╮ 提交于 2020-01-14 09:09:10
问题 I have been encountering this error while trying to load Visual studio 2012, An exception has been encountered.This may be caused by an extension and was given a location for additional information in C:\Users\~\AppData\Roaming\Microsoft\VisualStudio\11.0\ActivityLog.xml and in checking the location I have the following as error I clearly don't understand it: Microsoft.Internal.Assumes+InternalErrorException: Internal error occurred. Additional information: ''. at System.ComponentModel

NUnit.Runners via Nuget on Visual Studio 2012 express doesn't work

喜夏-厌秋 提交于 2020-01-14 08:20:23
问题 I'm trying to set up simple NUnit project in Visual Studio 2012 Express using NuGet manager. From PROJECT-> Manage NuGet Packages I installed NUnit (framework) and wanted add NUnit.Runner but during installation I'm receiving: 'NUnit.Runners 2.6.2' already installed. Ok, but when I go to the TOOLS->Library Package Manager->Manage nuGet Packages for Solution both NUnit (framework) and NUnit.Runners are displayed as installed. I can use NUnit framework in the code but when I'm trying to run

TF10175: The team project does not exists

▼魔方 西西 提交于 2020-01-14 07:43:05
问题 I use visualstudio online for repository. I removed [ProjectName] project from collecection of project After that I got error only on one computer TF10175: The [ProjectName] team project doesnot exist. Any idea to solve this issue ? 回答1: I got rid of the message by deleting my Workspace. Note: This will remove all your local mappings. Therefore you should checkin all changes before deleting it. After re-connecting to your TFS a new workspace will be created automatically. To delete the

Compile Tab missing from project properties in Visual Studio 2012

一世执手 提交于 2020-01-14 07:41:29
问题 When I right click on a project in my solution and go into the properties, I don't see the Compile tab on the left. I see Application, Build, Build Events and then the next one is Debug. I've Googled for this but couldn't find anything, and also couldn't find anything here. Does anyone have any idea what I'm doing wrong? Many thanks! 回答1: The Compile tab shows up for Visual Basic projects, but not for C# projects. For Visual Basic it mainly houses constructs specific to VB, like OPTION

How do you set up LuaBind with visual studio 2012?

落花浮王杯 提交于 2020-01-14 03:52:09
问题 I've been trying to do this for a day. I've read through the documentation, and searched online for help. I just can't seem to figure it out between different versions of boost/lua/luabind used with precompiled headers, and VS2010 vs VS2012. I found a great website here http://blog.nuclex-games.com/tutorials/cxx/luabind-introduction/ but when I follow those instructions I get LNK2019 errors (I'm assuming because he build luabind/boost/lua for VS2010. I also found this, http://urbsch.at/?read

How can I connect to a SQL Server Compact 3.5 file as a data source in Visual Studio 2012?

放肆的年华 提交于 2020-01-14 03:48:19
问题 Visual Studio 2012 comes with SQL Server Compact 4.0. I have installed SQL Server Compact 3.5 from http://www.microsoft.com/en-GB/download/confirmation.aspx?id=5783 However I still only have the option of making a new data connection to a SQL Server Compact 4.0 file, whereas the files I need to get data from are SQL Server Compact 3.5 files. Is it possible to connect to a SQL Server Compact 3.5 file as a data source in Visual Studio 2012? If so which settings or installs should I need? 回答1:

Access violation and strange behavior of Visual Studio

若如初见. 提交于 2020-01-14 03:41:12
问题 I'm writing a test application on DirectX11, and I have 2 classes "Box" and "camera" . "Box" is a cube which is to be drawn on the screen, and this is "camera": class camera { public : const camera operator=(const camera& fv) const { return fv; } XMVECTOR eye; XMVECTOR at; XMVECTOR up; XMVECTOR right; XMVECTOR left; XMVECTOR down; float pitch; //x float roll; //z float yaw; //y XMMATRIX View; XMMATRIX Projection; camera(); camera(XMVECTOR eye, XMVECTOR at, XMVECTOR up, float movingOffset,