mirror of https://github.com/dotnet/tye.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
375 B
16 lines
375 B
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
|
|
namespace Microsoft.AspNetCore.Testing
|
|
{
|
|
[Flags]
|
|
public enum RuntimeFrameworks
|
|
{
|
|
None = 0,
|
|
Mono = 1 << 0,
|
|
CLR = 1 << 1,
|
|
CoreCLR = 1 << 2
|
|
}
|
|
}
|
|
|