12 lines
153 B
C#
12 lines
153 B
C#
![]() |
using System;
|
||
|
using System.Collections.Generic;
|
||
|
|
||
|
namespace Microsoft.DotNet.Tools.Compiler.Native
|
||
|
{
|
||
|
public enum OSMode
|
||
|
{
|
||
|
Linux,
|
||
|
Windows,
|
||
|
Mac
|
||
|
}
|
||
|
}
|