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 <m.j.hutchinson@gmail.com>2011-07-15 15:58:39 +0400
committerMichael Hutchinson <m.j.hutchinson@gmail.com>2011-07-17 17:08:52 +0400
commit4cd98176bea36cb0ef63bfca59e45f610e6c790d (patch)
treeca34a5d49e99da14204e02947985dadde520a4d5 /main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects
parente32ededdecb29ed6f18f0e094daa54a358b52cf5 (diff)
Cleaned up user profiles
Diffstat (limited to 'main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects')
-rw-r--r--main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects/SelectReferenceDialog.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects/SelectReferenceDialog.cs b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects/SelectReferenceDialog.cs
index bfaa475bce..365eb30296 100644
--- a/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects/SelectReferenceDialog.cs
+++ b/main/src/core/MonoDevelop.Ide/MonoDevelop.Ide.Projects/SelectReferenceDialog.cs
@@ -403,7 +403,7 @@ namespace MonoDevelop.Ide.Projects
return;
recentFilesModified = false;
- FilePath file = PropertyService.Locations.Cache.Combine ("RecentAssemblies.txt");
+ FilePath file = UserProfile.Current.CacheDir.Combine ("RecentAssemblies.txt");
if (File.Exists (file)) {
try {
recentFiles = new List<FilePath> (File.ReadAllLines (file).Where (f => File.Exists (f)).Select (f => (FilePath)f));
@@ -420,7 +420,7 @@ namespace MonoDevelop.Ide.Projects
{
if (!recentFilesModified)
return;
- FilePath file = PropertyService.Locations.Cache.Combine ("RecentAssemblies.txt");
+ FilePath file = UserProfile.Current.CacheDir.Combine ("RecentAssemblies.txt");
try {
File.WriteAllLines (file, recentFiles.ToArray ().ToStringArray ());
} catch (Exception ex) {