dotnet-installer/src/dotnet/commands/dotnet-compile-native/enums/OSMode.cs

12 lines
153 B
C#
Raw Normal View History

2015-11-17 20:16:10 -08:00
using System;
using System.Collections.Generic;
namespace Microsoft.DotNet.Tools.Compiler.Native
{
public enum OSMode
{
Linux,
Windows,
Mac
}
}