10
votes

I'm using VS 2010 RC1. I download MSBuild Community Tasks (MCT) and install it. (To give full information, I have also installed MSBuild Extension Pack)

Then, in order to have Intellisense work for MCT 's tasks, I copied the file C:\Program Files\MSBuild\MSBuildCommunityTasks\MSBuild.Community.Tasks.xsd to C:\Program Files\Microsoft Visual Studio 10.0\Xml\Schemas\1033\MSBuild\MSBuild.Community.Tasks.xsd

I start VS and create a project (build) file as below:

<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" >
  <_
 </Project>

As starting to type a Target, I have no Intellisense there.

I try to open the property pane, click the schema browsing button, add the file C:\Program Files\MSBuild\MSBuildCommunityTasks\MSBuild.Community.Tasks.xsd but Intellisense still not work! Removing this shcema, the Intellisense returns to work and of course, just works for other tasks but MCT tasks.

Does anyone have met the same problem like me? Please help!

3
I'm working on this as well, it appears there's a circular reference, the community .xsd includes Microsoft.Build.CommonTypes.xsd while that is the file you are supposed to be adding the include line for the extra tasks.Maslow
Just ran into the same issue with VS 2010.roufamatic

3 Answers

5
votes

You need to add the following line to C:\program files\Microsoft Visual Studio 10.0\Xml\Schemas\1033\Microsoft.Build.xsd

<xs:include schemaLocation="MSBuild\MSBuild.Community.Tasks.xsd"/>

It should be put at the end of the file, before the </xs:schema>

4
votes

I am using VS2008 and I manually copied the MSBuild Community Tasks schema file (.xsd) into the proper Visual Studio directory. However that wasn't enough for my community tasks to register with Intellisense.

I had to open the .csproj file within Visual Studio and then go to the 'XML' menu and select 'Schemas...'. The MSBuild Community Schema file was not on the list anywhere, so I clicked 'Add' and then added the file. Once I did that and closed the dialog, viola! I had intellisense for the community tasks.

I was inspired by this posting on MDSN

1
votes

I had the same issue when I first started using VS 2010 RC1. I re-installed and it worked for a bit and stopped.

I have since downloaded and installed the trial version of VS 2010 Pro Download Here

I have not had any issues since.