visual-studio-2012

Finding builds in Team Explorer's “My Builds”

点点圈 提交于 2019-12-13 07:07:59
问题 I'm writing a Visual Studio 2012 add-in which extends Build Explorer - basically, I add a context menu option for every build (completed or running, but not queued). Following a blog post about doing this in VS2010, I managed to do so for builds that appear in Builder Explorer - hooray! Now, my context menu also appear in Team Explorer's Builds pages, My Builds section. However, when I get the callback, I can't find the actual builds anywhere! Here's my beforeQueryStatus event handler, where

Include files in MSBuild that are not part of project

谁说我不能喝 提交于 2019-12-13 06:27:28
问题 I'm trying to create an automated build for my web application project. We use a standard CMS project and have tweaked some parts of it. Only the tweaked files are part of our project, but I want to include the full CMS in the deployment package. So I've created a custom .targets file to define a task to include the CMS files during the build: <Target Name="GetCMSFiles"> <ItemGroup> <!-- Include the CMS files into the package --> <_CMSFiles Include="..\packages\CMSFiles\**\*" />

WCF Data Service template with Visual Studio 2013 preview

三世轮回 提交于 2019-12-13 06:25:45
问题 A day ago I reformatted my computer and installed Windows 8.1 and then Visual Studio 2013 Preview. I was very VERY happy with all the changes, but I encountered one thing that's missing from 2012 version: WCF Data Service template Thing is that not only the template is missing, but the one that works with 2012 is not compatible with 2013 Preview even when I add template package manualy and change the assembly version in .vstemplate file. Am I missing something and this is not enough:

Unable to debug JavaScript in VS 2012 and IE9 after rollback from IE10

☆樱花仙子☆ 提交于 2019-12-13 06:17:27
问题 I recently accidentally let Windows Update install IE10 on my Windows 7 64bit machine and then uninstalled that update (need IE9 for main dev process). Ever since then I cannot debug JavaScript in VS - getting all too familiar Breakpoint will not be hit no symbols have been loaded for this document Debugging worked flawlessly before update/rollback. Any idea what could've changed and how to change it back? 回答1: Fixed by repairing VS 2012 install. Guess IE10 left some artifacts after being

Cant add system.windows.froms without could not be resolved error

一曲冷凌霜 提交于 2019-12-13 06:15:37
问题 I am a newbie to visual studio so apologies in advance for anything dumb I ask or say. I am trying to inject a username and password into a document and automatically sign in to a https web site. I use the code as follows: using System.Net; using System.Windows; using System.Windows.Controls; using System.Windows.Navigation; using System.Windows.Forms; using Microsoft.Phone.Controls; using Microsoft.Phone.Shell; using TasKey2.Resources; using System.IO.IsolatedStorage; namespace myapp {

WPF ListView Style Borders

。_饼干妹妹 提交于 2019-12-13 06:13:10
问题 Today i started teaching my self how to create a wpf application (finally) So i am starting to get used to it but i have hit a bit of a snag with styling a listview. In this top picture you can see it working perfectly (no border around the selection) However in the second picture you can see a small border around the selection.. It seems this only happens when i use the keyboard to go to the next item in the list. Is there something i am missing in the styles so i can get rid of this border?

VS2012 not detecting external changes

人盡茶涼 提交于 2019-12-13 06:12:16
问题 I got this weird issue, when I make external changes on files (like removing a file or make new ones), Visual Studio 2012 (Ultimate) doesn't detect the file changes. Right now, I deleted ~15 and copied a lots of new files in windows explorer, but in my solution, it shows the old files and says there is an issue with them. I turned on "Tools"->"options"->"Environment"->"Documents"->"Detect when file changes outside..." and the one under it. Doesn't help. (Right now, I am working on an MVC4

Setting up IIS Express to accept local connections on visual studio 2012

江枫思渺然 提交于 2019-12-13 06:01:49
问题 I made a web service with MVC4 and running on localhost with IIS express seems fine. But I need to access from outside, so I'll have to use a local IP. I've found out that IIS Express only accepts incoming requests with localhost specification in the header. I've tried to go to the "applicationhost.config" and change the binding protocol="http" bindingInformation="*:4019:localhost" to this: binding protocol="http" bindingInformation="*:4019:10.250.38.85" but now visual studio wont let me run

Getting information from delegated email account from appointment inspector window - outlook 2013 using addin-express

馋奶兔 提交于 2019-12-13 05:51:12
问题 I am developing an Outlook plugin using add-in-express. There are two mail account (A) which has granted calendar access to account (B) through delegation. I am developing the plugin for account (B). Here is what I want to implement. I open the calendar account of (A) after login to outlook using the credentials of account (B) (as a user, not by C# code). Then double click on some date of the calendar, which leads to open a new inspector window for me. In the ribbon of the inspector, there is

How to achieve Incremental deployment of Blob Files storage files to different environments of windows azure storage?

橙三吉。 提交于 2019-12-13 05:37:14
问题 We are new to Windows azure and are developing a web application. In the beginning of the project , we have deployed complete code to different environments which actually publish complete code and uploaded blob objects to azure storage as we linked sitefinity to hold blob objects in azure storage . But now as we are in the middle of development , we are just required to upload any new blob files created which can be quite less in numbers (1 or 2 or maybe few).Now I would like to know best