-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAssemblyInfo.cs
More file actions
24 lines (20 loc) · 1.15 KB
/
Copy pathAssemblyInfo.cs
File metadata and controls
24 lines (20 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// Copyright (c) Contributors to the New StyleCop Analyzers project.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using System;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: CLSCompliant(false)]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
[assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp6")]
[assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp7")]
[assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp8")]
[assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp9")]
[assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp10")]
[assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp11")]
[assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp12")]
[assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp13")]
[assembly: InternalsVisibleTo("StyleCop.Analyzers.Test.CSharp14")]
[assembly: InternalsVisibleTo("StyleCopTester")]