dotnet-installer/src/dotnet/commands/dotnet-compile-native/enums/OSMode.cs
David Fowler dfc59eb20e Everything in the same project
- Build in intrinsic commands as part of dotnet
2016-02-01 14:56:32 -08:00

12 lines
No EOL
153 B
C#

using System;
using System.Collections.Generic;
namespace Microsoft.DotNet.Tools.Compiler.Native
{
public enum OSMode
{
Linux,
Windows,
Mac
}
}