I have installed VS2010 and opened my sln with Visual Studio 2010. The conversion was successful and the projects build successfully. The solution file was changed and each project file now has the following differences.
Old - <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
New -<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
New -
<TargetFrameworkVersion>v2.0</TargetFrameworkVersion>
<OldToolsVersion>2.0</OldToolsVersion>
Old - <Import Project="$(MSBuildExtensionsPath)\Microsoft\VisualStudio\v8.0\WebApplications\Microsoft.WebApplication.targets" />
New - <Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
I need to upgrade every developer so they can use VS 2010. Visual Source Safe is controlling the code. Any ideas on the best course of action to deploy? If I checkin the sln and project files the developers can check out and open with VS 2010, but would I need to migrate these project files to Production? I am not upgrading the Framework at this time. thanks