aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/src/Core/Targets/VSGenericTarget.cs
diff options
context:
space:
mode:
authorJohn Hurliman2009-10-22 17:03:13 -0700
committerJohn Hurliman2009-10-22 17:03:13 -0700
commit96d53f11e554f37c135fa2d009f9ffed1a5ec724 (patch)
treefa31b970bb08bc9bda9db0e9a5a7866116300d70 /Prebuild/src/Core/Targets/VSGenericTarget.cs
parent* Moved Copyrights above the comments in ODEPrim and ODEDynamics so they're c... (diff)
downloadopensim-SC_OLD-96d53f11e554f37c135fa2d009f9ffed1a5ec724.zip
opensim-SC_OLD-96d53f11e554f37c135fa2d009f9ffed1a5ec724.tar.gz
opensim-SC_OLD-96d53f11e554f37c135fa2d009f9ffed1a5ec724.tar.bz2
opensim-SC_OLD-96d53f11e554f37c135fa2d009f9ffed1a5ec724.tar.xz
Added VS2010 support to Prebuild and created runprebuild2010.bat
Diffstat (limited to 'Prebuild/src/Core/Targets/VSGenericTarget.cs')
-rw-r--r--Prebuild/src/Core/Targets/VSGenericTarget.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Prebuild/src/Core/Targets/VSGenericTarget.cs b/Prebuild/src/Core/Targets/VSGenericTarget.cs
index 84f1df5..fdcc2b9 100644
--- a/Prebuild/src/Core/Targets/VSGenericTarget.cs
+++ b/Prebuild/src/Core/Targets/VSGenericTarget.cs
@@ -173,7 +173,7 @@ namespace Prebuild.Core.Targets
173 #region Project File 173 #region Project File
174 using (ps) 174 using (ps)
175 { 175 {
176 ps.WriteLine("<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\" {0}>", GetToolsVersionXml(project.FrameworkVersion)); 176 ps.WriteLine("<Project DefaultTargets=\"Build\" xmlns=\"http://schemas.microsoft.com/developer/msbuild/2003\" ToolsVersion=\"{0}\">", this.Version == VSVersion.VS10 ? "4.0" : "3.5");
177 ps.WriteLine(" <PropertyGroup>"); 177 ps.WriteLine(" <PropertyGroup>");
178 ps.WriteLine(" <ProjectType>Local</ProjectType>"); 178 ps.WriteLine(" <ProjectType>Local</ProjectType>");
179 ps.WriteLine(" <ProductVersion>{0}</ProductVersion>", this.ProductVersion); 179 ps.WriteLine(" <ProductVersion>{0}</ProductVersion>", this.ProductVersion);