visual-studio-2010-rc

MSDeploy doesn't deploy to remote server using MSBuild and Visual Studio 2010

拟墨画扇 提交于 2019-12-31 12:23:29
问题 I'm currently running Visual Studio Team System 2010 RC and I'm trying to get the Build Service setup to build my solution and deploy 3 web applications in it. I've created a custom build configuration called Integration and I've setup the "IIS Web site/application name to use on the destination server" on the Package/Publish tab of the Properties for each of the web applications. In my Build Definition I've set the following arguments: /p:DeployOnBuild=True /p:DeployTarget=MSDeployPublish /p

Does visual studio 2010 Premium include the contract tools?

不想你离开。 提交于 2019-12-22 04:45:12
问题 According to this feature matrix, Visual Studio 2010 Premium (RC) includes "static code analysis". However, adding calls to Contract.Requires at the start of my methods doesn't seem to have any effect. I don't get runtime exceptions if the contract is violated. I don't get compiler warnings if a contract cannot be proven. I also can't find a "Code Contracts" tab in the project settings. Am I missing something obvious or is this feature only available in the Ultimate edition? 回答1: There does

Running Visual Studio 2005, 2008, and 2010 on same system

亡梦爱人 提交于 2019-12-19 03:24:22
问题 I have around 50 projects in Visual Studio 2005 that I am building a new development machine for and I'd like to slowly move those projects to VS 2008 but also have 2010 available for select new projects. Can this work? Are there any gotchas for this sort of setup? Any general advice for running multiple versions of Visual Studio on the same system would be greatly appreciated. Specifically related to managing a controlled migration of projects to new versions but being able to selectively

Change default browser in Visual Studio 2010 RC

给你一囗甜甜゛ 提交于 2019-12-18 12:47:47
问题 In Visual Studio 2010 (RC) there is no longer a "browse with" context menu when right clicking .aspx pages. How can you change the default browser now? By default it seems to use the operating system default browser, but I would prefer to use IE when debugging ASP.net apps. (I am testing this with ASP.net MVC 2) 回答1: There is no "Browse With" option on the .aspx Views in an MVC project as they are not meant to be directly browseable. What I tend to do is add a Default.aspx webform in the root

Why can't IronPython be installed with Visual Studio 2010?

核能气质少年 提交于 2019-12-12 10:32:14
问题 IronPython has been out for a while now, so when I installed Visual Studio 2010 RC1 "Ultimate" this morning I was surprised to find that it couldn't be selected from the installer. Instead, one still has to go out to Codeplex. Does anybody know why it hasn't been included? 回答1: This is what I have picked up from the IP mailing list... Ironpython is on a different release cycle to Visual Studio and developed by a separate team. The MS G.O. team development process is far more responsive and

Cannot embed interop types from assembly “…\Microsoft.Search.Interop.dll” because it is missing the GuidAttribute attribute

霸气de小男生 提交于 2019-12-08 15:58:49
问题 I get this error when adding a reference to the Microsoft.Search.Interop.dll library in a new project that I created. Microsoft.Search.Interop.dll is a library that provides some useful API to communicate with Windows Search. I use it in order to add a folder to the system indexer. Did anybody else get this error, and if so, how should I go about solving it? I'm using VS2010 RC on a Windows Server 2008 if that is important. 回答1: Go to the Properties window for Microsoft.Search.Interop and

Does visual studio 2010 Premium include the contract tools?

邮差的信 提交于 2019-12-05 05:27:21
According to this feature matrix , Visual Studio 2010 Premium (RC) includes "static code analysis". However, adding calls to Contract.Requires at the start of my methods doesn't seem to have any effect. I don't get runtime exceptions if the contract is violated. I don't get compiler warnings if a contract cannot be proven. I also can't find a "Code Contracts" tab in the project settings. Am I missing something obvious or is this feature only available in the Ultimate edition? There does indeed seem to be some confusion about whether or not Code Contracts is included in the framework that comes

MSDeploy doesn't deploy to remote server using MSBuild and Visual Studio 2010

假装没事ソ 提交于 2019-12-02 22:40:34
I'm currently running Visual Studio Team System 2010 RC and I'm trying to get the Build Service setup to build my solution and deploy 3 web applications in it. I've created a custom build configuration called Integration and I've setup the "IIS Web site/application name to use on the destination server" on the Package/Publish tab of the Properties for each of the web applications. In my Build Definition I've set the following arguments: /p:DeployOnBuild=True /p:DeployTarget=MSDeployPublish /p:MSDeployPublishMethod=InProc /p:MsDeployServiceUrl= http://my-server-name:8172/msdeploy.axd /p

Visual studio 2010 and Sql Server

|▌冷眼眸甩不掉的悲伤 提交于 2019-12-01 05:23:14
Do visual studio 2010 include already Sql Server instance, or I need to install Sql Server developer edition to develop an application that need a Sql Server db. If it installs a Sql Server express edition, it this enough or it's better to have Sql Server developer edition? I would second that installing the "full" SQL Server Development Edition makes sense if you do serious database development. However you can have both installed side by side, and having SQL Server Express is very useful for one reason - it supports placing database files in the App_Data folder of ASP.NET applications. While

Visual studio 2010 and Sql Server

心不动则不痛 提交于 2019-12-01 02:09:08
问题 Do visual studio 2010 include already Sql Server instance, or I need to install Sql Server developer edition to develop an application that need a Sql Server db. If it installs a Sql Server express edition, it this enough or it's better to have Sql Server developer edition? 回答1: I would second that installing the "full" SQL Server Development Edition makes sense if you do serious database development. However you can have both installed side by side, and having SQL Server Express is very