visual-studio-2012

WebDeploy with MSBuild Not Deploying from TeamCity

社会主义新天地 提交于 2019-12-20 21:52:40
问题 I am trying to use MSDeploy to deploy an MVC project to the server using TeamCity. When I do this on my computer in powershell, using the following command: msbuild.exe .\mvc.csproj /p:PublishProfile=DevServer /p:VisualStudioVersion=11.0 /p:DeployOnBuild=True /p:Password=MyPassword /p:AllowUntrustedCertificate=true It builds the project and deploys it to the server (info defined in the DevServer publish profile) perfectly. The output shows an MSDeployPublish section at the end, in which I see

WebDeploy with MSBuild Not Deploying from TeamCity

僤鯓⒐⒋嵵緔 提交于 2019-12-20 21:52:32
问题 I am trying to use MSDeploy to deploy an MVC project to the server using TeamCity. When I do this on my computer in powershell, using the following command: msbuild.exe .\mvc.csproj /p:PublishProfile=DevServer /p:VisualStudioVersion=11.0 /p:DeployOnBuild=True /p:Password=MyPassword /p:AllowUntrustedCertificate=true It builds the project and deploys it to the server (info defined in the DevServer publish profile) perfectly. The output shows an MSDeployPublish section at the end, in which I see

All files are marked as read only after check in to TFS from Visual Studio 2012

三世轮回 提交于 2019-12-20 18:38:11
问题 I have a solution with two projects. I just marked the solution and checked it in and now all files have that little image of blue padlock on the left side which obviously means that they are marked as read only. I've been working only with Tortoise SVN till now and this is my very first check in to TFS, so why does this happen, or if it is too complicated for an answer here, at least how can I return the state of my files (the entire solution maybe) to normal. Also I've been struggling to

Find shelvesets via Visual Studio as quickly as possible

岁酱吖の 提交于 2019-12-20 18:12:13
问题 I need to review many shelvesets using Visual Studio every day. I have added the TfsPendingChanges command to the my toolbar, but the rest of the procedure to access a shelveset (Actions/Find Shelvesets) still feels clumsy. In fact, shelveset review has nothing to do with my own pending changes. And VS11 just made it even one step longer than it already was. Is there any way to add "Find Shelvesets" in some form directly to a menu or to a toolbar, in Visual Studio 2012? 回答1: If you go to

Find shelvesets via Visual Studio as quickly as possible

守給你的承諾、 提交于 2019-12-20 18:12:13
问题 I need to review many shelvesets using Visual Studio every day. I have added the TfsPendingChanges command to the my toolbar, but the rest of the procedure to access a shelveset (Actions/Find Shelvesets) still feels clumsy. In fact, shelveset review has nothing to do with my own pending changes. And VS11 just made it even one step longer than it already was. Is there any way to add "Find Shelvesets" in some form directly to a menu or to a toolbar, in Visual Studio 2012? 回答1: If you go to

Find shelvesets via Visual Studio as quickly as possible

爱⌒轻易说出口 提交于 2019-12-20 18:12:02
问题 I need to review many shelvesets using Visual Studio every day. I have added the TfsPendingChanges command to the my toolbar, but the rest of the procedure to access a shelveset (Actions/Find Shelvesets) still feels clumsy. In fact, shelveset review has nothing to do with my own pending changes. And VS11 just made it even one step longer than it already was. Is there any way to add "Find Shelvesets" in some form directly to a menu or to a toolbar, in Visual Studio 2012? 回答1: If you go to

Visual Studio 2012 Database Diagram?

家住魔仙堡 提交于 2019-12-20 17:32:44
问题 I have done very little in C# and am following the Head First C# book. There's a part in the book where it asks me to create a Database Diagram for my SQL database, but in the Database Explorer there is no Database Diagram node/folder. I have heard that Microsoft dropped the Database Diagram feature, but is there another way to create a Database Diagram that would be easy enough for me to understand? 回答1: Give SQL Server Management Studio a try. It has a table diagram tool. Here's the express

Where is the SQL Query Analyzer in SQL Server Management Studio 2012

♀尐吖头ヾ 提交于 2019-12-20 17:31:48
问题 I have some SQL thats getting run and it is taking to long to return the results / parse / display, etc. application. I have SQL Server Management Studio 2012 installed.but i am not able to find SQL Query Analyser. Any Input will be appreciable. 回答1: Take a look at this link http://consultingblogs.emc.com/jamiethomson/archive/2008/07/10/query-analyzer-or-management-studio.aspx The Query Analyzer (QA) was the query tool provided with SQL Server up until SQL Server 2000. In SQL Server 2005 and

The program can't start because MSVCR110.dll is missing from your computer

≡放荡痞女 提交于 2019-12-20 17:28:29
问题 I'm trying to install apache server 2.4 onto my (windows) computer and so far I've run in to this "common" problem but I cannot resolve it. The error message in the title continues to come up, but I have downloaded both the 32 and 64 bit version (successfully) of the missing required item from http://www.microsoft.com/en-us/download/details.aspx?id=30679#. When I search for 'msvcr110.dll' in windows explorer, I can see a couple files of that name so I'm wondering why apache can't locate it. I

In Visual Studio Test, how to make a playlist which automatically excludes certain tests?

孤人 提交于 2019-12-20 16:20:55
问题 Our team has Visual Studio 2012 Professional licenses (not Test Professional). We are developing a smallish web application, and we have both true unit tests which mock everything needed, and tests for the data layer. Each class of data layer tests creates the whole database from scratch and fills it with a prepared set of test data, so running them takes a long time. As a result, we are reluctant to do a "run all", and our unit tests (which are quick) are only used rarely. We are looking for