Remove unused settings
This commit is contained in:
parent
8eec69ff09
commit
496be90eb8
@ -65,9 +65,5 @@
|
||||
"_template"
|
||||
],
|
||||
"MethodParamaterBlackList": []
|
||||
},
|
||||
"CrossCompiler": {
|
||||
"LastLoadedProject": "",
|
||||
"AutoLoadLastActiveProject": true
|
||||
}
|
||||
}
|
@ -43,18 +43,6 @@ public class Settings
|
||||
}
|
||||
}
|
||||
|
||||
private CrossCompilerSettings _crossCompiler;
|
||||
|
||||
public CrossCompilerSettings CrossCompiler
|
||||
{
|
||||
get { return _crossCompiler; }
|
||||
set
|
||||
{
|
||||
_crossCompiler = value;
|
||||
Save();
|
||||
}
|
||||
}
|
||||
|
||||
private void Save()
|
||||
{
|
||||
DataProvider.SaveAppSettings();
|
||||
@ -338,47 +326,6 @@ public class AutoMapperSettings
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// These are settings for the cross compiler module
|
||||
/// </summary>
|
||||
public class CrossCompilerSettings
|
||||
{
|
||||
private string _lastLoadedProject;
|
||||
|
||||
/// <summary>
|
||||
/// Last Loaded Project Path
|
||||
/// </summary>
|
||||
public string LastLoadedProject
|
||||
{
|
||||
get { return _lastLoadedProject; }
|
||||
set
|
||||
{
|
||||
_lastLoadedProject = value;
|
||||
Save();
|
||||
}
|
||||
}
|
||||
|
||||
private bool _autoLoadLastActiveProj;
|
||||
|
||||
/// <summary>
|
||||
/// Should the last active project be auto loaded
|
||||
/// </summary>
|
||||
public bool AutoLoadLastActiveProject
|
||||
{
|
||||
get { return _autoLoadLastActiveProj; }
|
||||
set
|
||||
{
|
||||
_autoLoadLastActiveProj = value;
|
||||
Save();
|
||||
}
|
||||
}
|
||||
|
||||
private void Save()
|
||||
{
|
||||
DataProvider.SaveAppSettings();
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// These are settings that all versions of the remappers use
|
||||
/// </summary>
|
||||
|
Loading…
x
Reference in New Issue
Block a user