Fixing formatting issues pointed out during code review.
This commit is contained in:
parent
3d0089552c
commit
af3d2a6c5c
2 changed files with 3 additions and 8 deletions
|
@ -23,12 +23,7 @@ namespace Microsoft.DotNet.Configurer
|
|||
}
|
||||
}
|
||||
|
||||
public string NuGetUserSettingsDirectory
|
||||
{
|
||||
get
|
||||
{
|
||||
return NuGetEnvironment.GetFolderPath(NuGetFolderPath.UserSettingsDirectory);
|
||||
}
|
||||
}
|
||||
public string NuGetUserSettingsDirectory =>
|
||||
NuGetEnvironment.GetFolderPath(NuGetFolderPath.UserSettingsDirectory);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -62,7 +62,7 @@ namespace Microsoft.DotNet.Configurer
|
|||
{
|
||||
try
|
||||
{
|
||||
if(!Directory.Exists(_nugetCachePath))
|
||||
if (!Directory.Exists(_nugetCachePath))
|
||||
{
|
||||
Directory.CreateDirectory(_nugetCachePath);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue