File: Interactive\Core\InteractiveHostPlatform.cs | Web Access |
Project: src\src\Interactive\Host\Microsoft.CodeAnalysis.InteractiveHost.csproj (Microsoft.CodeAnalysis.InteractiveHost) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. namespace Microsoft.CodeAnalysis.Interactive { internal enum InteractiveHostPlatform { Core = 1, Desktop32 = 2, Desktop64 = 3 } } |