2016-10-27 18:46:43 -07: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.
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.DotNet.TestFramework
|
|
|
|
|
{
|
|
|
|
|
public class TestAssetKinds
|
|
|
|
|
{
|
|
|
|
|
public static string DesktopTestProjects = "DesktopTestProjects";
|
2017-10-11 17:17:28 -07:00
|
|
|
|
|
2016-10-27 18:46:43 -07:00
|
|
|
|
public static string TestProjects = "TestProjects";
|
2017-01-06 01:40:26 -08:00
|
|
|
|
|
|
|
|
|
public static string NonRestoredTestProjects = "NonRestoredTestProjects";
|
2018-10-29 11:26:53 -07:00
|
|
|
|
|
|
|
|
|
public static string TestPackages = "TestPackages";
|
2016-10-27 18:46:43 -07:00
|
|
|
|
}
|
|
|
|
|
}
|