Fixing formatting issues pointed out during code review.

This commit is contained in:
Livar Cunha 2017-04-03 22:18:05 -07:00
parent 3d0089552c
commit af3d2a6c5c
2 changed files with 3 additions and 8 deletions

View file

@ -23,12 +23,7 @@ namespace Microsoft.DotNet.Configurer
}
}
public string NuGetUserSettingsDirectory
{
get
{
return NuGetEnvironment.GetFolderPath(NuGetFolderPath.UserSettingsDirectory);
}
}
public string NuGetUserSettingsDirectory =>
NuGetEnvironment.GetFolderPath(NuGetFolderPath.UserSettingsDirectory);
}
}

View file

@ -62,7 +62,7 @@ namespace Microsoft.DotNet.Configurer
{
try
{
if(!Directory.Exists(_nugetCachePath))
if (!Directory.Exists(_nugetCachePath))
{
Directory.CreateDirectory(_nugetCachePath);
}