2016-10-28 01:46:43 +00:00
|
|
|
|
// Copyright (c) .NET Foundation and contributors. All rights reserved.
|
|
|
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Runtime.CompilerServices;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Microsoft.DotNet.Cli.Utils;
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.TestFramework
|
|
|
|
|
{
|
|
|
|
|
public class TestAssetKinds
|
|
|
|
|
{
|
|
|
|
|
public static string DesktopTestProjects = "DesktopTestProjects";
|
2017-10-12 00:17:28 +00:00
|
|
|
|
|
2016-10-28 01:46:43 +00:00
|
|
|
|
public static string TestProjects = "TestProjects";
|
2017-01-06 09:40:26 +00:00
|
|
|
|
|
|
|
|
|
public static string NonRestoredTestProjects = "NonRestoredTestProjects";
|
2018-10-29 18:26:53 +00:00
|
|
|
|
|
|
|
|
|
public static string TestPackages = "TestPackages";
|
2016-10-28 01:46:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|