Skip to content

Commit 6f91790

Browse files
karanjitsinghmayankbansal018
authored andcommitted
fix #514: mark Microsoft.VisualStudio.TestPlatform.TestFramework.dll and Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll cls compliant (#516)
1 parent 0301eea commit 6f91790

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

src/TestFramework/Extension.Core/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

4+
using System;
45
using System.Reflection;
56
using System.Resources;
67

@@ -16,6 +17,7 @@
1617
[assembly: AssemblyTrademark("")]
1718
[assembly: AssemblyCulture("")]
1819
[assembly: NeutralResourcesLanguage("en")]
20+
[assembly: CLSCompliant(true)]
1921

2022
// Version information for an assembly consists of the following four values:
2123
//

src/TestFramework/Extension.Desktop/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

4+
using System;
45
using System.Reflection;
56
using System.Runtime.InteropServices;
67

@@ -15,6 +16,7 @@
1516
[assembly: AssemblyCopyright("Copyright © 2015")]
1617
[assembly: AssemblyTrademark("")]
1718
[assembly: AssemblyCulture("")]
19+
[assembly: CLSCompliant(true)]
1820

1921
// Setting ComVisible to false makes the types in this assembly not visible
2022
// to COM components. If you need to access a type in this assembly from

src/TestFramework/Extension.UWP/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

4+
using System;
45
using System.Reflection;
56
using System.Runtime.InteropServices;
67

@@ -15,6 +16,7 @@
1516
[assembly: AssemblyCopyright("Copyright © 2017")]
1617
[assembly: AssemblyTrademark("")]
1718
[assembly: AssemblyCulture("")]
19+
[assembly: CLSCompliant(true)]
1820

1921
// Version information for an assembly consists of the following four values:
2022
//

src/TestFramework/MSTest.Core/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
// Copyright (c) Microsoft Corporation. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

4+
using System;
45
using System.Reflection;
56
using System.Resources;
67

@@ -16,6 +17,7 @@
1617
[assembly: AssemblyTrademark("")]
1718
[assembly: AssemblyCulture("")]
1819
[assembly: NeutralResourcesLanguage("en")]
20+
[assembly: CLSCompliant(true)]
1921

2022
// Version information for an assembly consists of the following four values:
2123
//

0 commit comments

Comments
 (0)