forked from microsoft/testfx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathConstants.cs
43 lines (30 loc) · 1.79 KB
/
Constants.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace Microsoft.VisualStudio.TestPlatform.MSTestAdapter.PlatformServices;
using System.Collections.Generic;
using Microsoft.VisualStudio.TestPlatform.ObjectModel;
internal class Constants
{
#if NETFRAMEWORK
/// <summary>
/// Constants for detecting .net framework.
/// </summary>
public const string TargetFrameworkAttributeFullName = "System.Runtime.Versioning.TargetFrameworkAttribute";
public const string DotNetFrameWorkStringPrefix = ".NETFramework,Version=";
public const string TargetFrameworkName = "TargetFrameworkName";
public const string PublicAssemblies = "PublicAssemblies";
public const string PrivateAssemblies = "PrivateAssemblies";
#endif
public static readonly TestProperty DeploymentItemsProperty = TestProperty.Register("MSTestDiscoverer.DeploymentItems", DeploymentItemsLabel, typeof(KeyValuePair<string, string>[]), TestPropertyAttributes.Hidden, typeof(TestCase));
internal const string DllExtension = ".dll";
internal const string ExeExtension = ".exe";
internal const string AppxPackageExtension = ".appx";
#if NETFRAMEWORK
internal const string PhoneAppxPackageExtension = ".appx";
// These are tied to a specific VS version. Can be changed to have a list of supported version instead.
internal const string VisualStudioRootRegKey32ForDev14 = @"SOFTWARE\Microsoft\VisualStudio\" + VisualStudioVersion;
internal const string VisualStudioRootRegKey64ForDev14 = @"SOFTWARE\Wow6432Node\Microsoft\VisualStudio\" + VisualStudioVersion;
internal const string VisualStudioVersion = "14.0";
#endif
private const string DeploymentItemsLabel = "DeploymentItems";
}