change visibility to internal

This commit is contained in:
Krzysztof Wicher 2017-01-03 16:51:15 -08:00
parent b813695fc0
commit 6973d15d4a
2 changed files with 3 additions and 3 deletions

View file

@ -9,7 +9,7 @@ using Microsoft.DotNet.PlatformAbstractions;
namespace Microsoft.DotNet.Cli
{
public static class DotnetFiles
internal static class DotnetFiles
{
private static string SdkRootFolder => Path.Combine(typeof(DotnetFiles).GetTypeInfo().Assembly.Location, "..");
@ -21,7 +21,7 @@ namespace Microsoft.DotNet.Cli
/// </summary>
public static string VersionFile => Path.GetFullPath(Path.Combine(SdkRootFolder, ".version"));
public static DotnetVersionFile VersionFileObject
internal static DotnetVersionFile VersionFileObject
{
get { return s_versionFileObject.Value; }
}

View file

@ -6,7 +6,7 @@ using System.IO;
namespace Microsoft.DotNet.Cli.Utils
{
public class DotnetVersionFile
internal class DotnetVersionFile
{
public bool Exists { get; set; }