visual-studio-2013

Where is the “Create Unit Tests” selection?

只愿长相守 提交于 2020-01-09 02:54:11
问题 I have installed the new Visual Studio 2012 Ultimate. I have created a Test Project with my solution and it contains some default unit tests. However right clicking on new Methods doesn't show the "Create Unit Tests" context menu any longer. See Visual Studio 2010 Ultimate: And Visual Studio 2012 Ultimate: Any idea why that could be? UPDATE: Solution for Visual Studio 2012 and 2013: Microsoft has acknowledged it here and offers an official work around patch to fix it. Download, install and

Can't use videoBrush windows phone 8.1. Visual studio 2013 doesn't see System.Windows.Media

烈酒焚心 提交于 2020-01-07 08:25:15
问题 Visual studio 2013 doesn't see System.Windows.Media . I tried to find PresentationCore.dll (like in this case), but i don't have any folder named Framework . When i try to get this folder from a different source (friend's notebook), I can use System.Windows.Media , but it doesn't compile, because this file has a different architecture. I tried to repair .NET but it had no effect. If I cannot install this feature, how can I get an image from the camera in real time? 回答1: You should use

Integrating SonarQube into TFS 2013 : Failed to locate the code coverage command line tool

生来就可爱ヽ(ⅴ<●) 提交于 2020-01-07 06:56:30
问题 I am trying to integrate SonarQube with TFS 2013 and trying to build a solution using Visual Studio 2013. I have followed everything from the documentation provided by the SonarQube. https://github.com/SonarSource/sonar-.net-documentation/releases/download/1.1.0/SonarQube-Setup-Guide-For-Net-Users-V-1-1-0.pdf This is the log I am getting. Overall Build Process 00:18 Overall build process 00:00 Update build number 00:18 Run on agent (reserved build agent Default Agent - cvm-511) 00:00

TFS Build XAML Template at “AssociateChanges” step get all the Work Items since begging of the source code branch created

一曲冷凌霜 提交于 2020-01-07 06:50:14
问题 I have asked a similar question TFS Build Configuration: get all the Work Items Details for a particular build And based on the answer of above question I have the below query. I decided to start a new thread for new question rather than confusing people in same thread. I am using a default XAML template for workflow of TFS build configuration. Now my requirement is that I need all the Work Items since beginning whenever I trigger a build event for any build definition regardless of last

Visual Studio - The “Copy” task failed unexpectedly

放肆的年华 提交于 2020-01-07 03:54:05
问题 Using Visual Studio 2013, I have suddenly started getting this error when I build the solution: The "Copy" task failed unexpectedly. System.Runtime.InteropServices.COMException (0x800710FE): This file is currently not available for use on this computer. (Exception from HRESULT: 0x800710FE) at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo) at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32 errorCode) at Microsoft.Build

run conf.ts in VS 2013 + TS

无人久伴 提交于 2020-01-07 03:11:09
问题 i want to run the conf.ts in visual studio 2013 with type script. i have added the conf.ts, spec.ts and required typing. it looks as below. There are 0 build errors. if i run the conf.ts, it is going to local host which is mentioned in the project properties and not to the base path have mentioned in the spec.ts. how to resolve this issue? project in VS 2013 来源: https://stackoverflow.com/questions/43109914/run-conf-ts-in-vs-2013-ts

.gitignore with Visual Studio 2013 not working

落爺英雄遲暮 提交于 2020-01-07 03:04:32
问题 I have two .config files I commited to github and now no longer want the changes tracked, called PrivateConnectionStrings.config and PrivateSettings.config. I'm either misunderstanding how the Git Plugin for VS2013 works or something is not working correctly. My .gitIgnore file has many entries, here's what I have for specfically them currently: **/PrivateConnectionStrings.config **/PrivateSettings.config If I modify one of the config files it shows the red check indicating change in the

.gitignore with Visual Studio 2013 not working

百般思念 提交于 2020-01-07 03:04:06
问题 I have two .config files I commited to github and now no longer want the changes tracked, called PrivateConnectionStrings.config and PrivateSettings.config. I'm either misunderstanding how the Git Plugin for VS2013 works or something is not working correctly. My .gitIgnore file has many entries, here's what I have for specfically them currently: **/PrivateConnectionStrings.config **/PrivateSettings.config If I modify one of the config files it shows the red check indicating change in the

WPF binding errors not showing up anywhere no matter what I do

断了今生、忘了曾经 提交于 2020-01-07 02:50:05
问题 I used to be able to see when there were binding errors at runtime or compile time in the output window. Now they're never there. I've seen things like this and tried all the answers, and nothing is showing in the intermediate window either. Here's a simple test. I created a WPF app and just added a text box to the main window, then I set the binding on the Text property to a non-existent binding source blah : <Window x:Class="WpfApplication1.MainWindow" xmlns="http://schemas.microsoft.com

HTTP Error 405.0 - Method Not Allowed in ASP.net MVC5

左心房为你撑大大i 提交于 2020-01-06 20:20:43
问题 I am continuously getting the following message while running my application. HTTP Error 405.0 - Method Not Allowed The page you are looking for cannot be displayed because an invalid method (HTTP verb) is being used. I dont have any clue how this happening. I tried to run this with undoing last changes but still its not working. Can anyone help me on this please? 回答1: Mostly it means that your Web Server is not recognizing the HTTP method( GET,POST,DELETE,PUT ...) in the request. First,