Enable tests
This commit is contained in:
parent
ac23150af3
commit
96c79f9661
26 changed files with 288 additions and 394 deletions
|
@ -0,0 +1,24 @@
|
|||
// 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";
|
||||
|
||||
public static string TestProjects = "TestProjects";
|
||||
|
||||
public static string NonRestoredTestProjects = "NonRestoredTestProjects";
|
||||
|
||||
public static string TestPackages = "TestPackages";
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue