This repository was archived by the owner on Dec 5, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-18
lines changed Expand file tree Collapse file tree 2 files changed +4
-18
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ public JsonBackedSettings()
45
45
public override void Initialize ( )
46
46
{
47
47
cachePath = SettingsPath . Combine ( SettingsFileName ) ;
48
+ logger . Trace ( "Initializing settings file at {0}" , cachePath ) ;
48
49
LoadFromCache ( cachePath ) ;
49
50
}
50
51
Original file line number Diff line number Diff line change @@ -105,26 +105,11 @@ public string UnityProjectPath
105
105
public string ExtensionInstallPath
106
106
{
107
107
get { return extensionInstallPath ; }
108
- set { throw new NotImplementedException ( ) ; }
108
+ set { }
109
109
}
110
110
111
- public NPath UserCachePath
112
- {
113
- get
114
- {
115
- return GetSpecialFolder ( Environment . SpecialFolder . LocalApplicationData ) . ToNPath ( ) . Combine ( ApplicationInfo . ApplicationName ) ;
116
- }
117
- set { throw new NotImplementedException ( ) ; }
118
- }
119
-
120
- public NPath SystemCachePath
121
- {
122
- get
123
- {
124
- return GetSpecialFolder ( Environment . SpecialFolder . CommonApplicationData ) . ToNPath ( ) . Combine ( ApplicationInfo . ApplicationName ) ;
125
- }
126
- set { throw new NotImplementedException ( ) ; }
127
- }
111
+ public NPath UserCachePath { get ; set ; }
112
+ public NPath SystemCachePath { get ; set ; }
128
113
129
114
public string RepositoryPath { get ; set ; }
130
115
You can’t perform that action at this time.
0 commit comments