Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Hutchinson <mhutch@xamarin.com>2014-01-22 00:37:38 +0400
committerMichael Hutchinson <mhutch@xamarin.com>2014-01-23 02:13:46 +0400
commit6ad06822542073be88113cbeac73dac2c8368438 (patch)
treea4472e5680e2d0d748b6d1d2041e9781720c5c5d /main/tests
parent9b21724e7c51009f2bb21ca803bd34278c12510f (diff)
[MSBuild] Default file format can no longer be changed
There is almost no reason to make it easy for users to default to creating older file formats, all it does is increase chance of messing things up. Projects can still be exported, loaded and roundtripped with older formats, so we're not removing functionality. We now always create projects with the MSBuild12 file format, which can be opened in VS2010 SP1 and later.
Diffstat (limited to 'main/tests')
-rw-r--r--main/tests/UnitTests/MonoDevelop.Projects/SolutionTests.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/tests/UnitTests/MonoDevelop.Projects/SolutionTests.cs b/main/tests/UnitTests/MonoDevelop.Projects/SolutionTests.cs
index 0016f983c6..0235665ca1 100644
--- a/main/tests/UnitTests/MonoDevelop.Projects/SolutionTests.cs
+++ b/main/tests/UnitTests/MonoDevelop.Projects/SolutionTests.cs
@@ -509,8 +509,8 @@ namespace MonoDevelop.Projects
Solution sol = TestProjectsChecks.CreateConsoleSolution ("reloading");
Project p = (Project) sol.Items [0];
- Assert.AreEqual (Services.ProjectService.DefaultFileFormatId, sol.FileFormat.Id);
- Assert.AreEqual (Services.ProjectService.DefaultFileFormatId, p.FileFormat.Id);
+ Assert.AreEqual (Services.ProjectService.DefaultFileFormat.Id, sol.FileFormat.Id);
+ Assert.AreEqual (Services.ProjectService.DefaultFileFormat.Id, p.FileFormat.Id);
// Change solution format of unsaved solution