-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAssemblyAttributes.cs
More file actions
14 lines (12 loc) · 1.04 KB
/
AssemblyAttributes.cs
File metadata and controls
14 lines (12 loc) · 1.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using System.Runtime.CompilerServices;
[assembly: DisablePrivateReflection()]
[assembly: InternalsVisibleTo("RapidField.SolidInstruments.Messaging.Autofac")]
[assembly: InternalsVisibleTo("RapidField.SolidInstruments.Messaging.AzureServiceBus")]
[assembly: InternalsVisibleTo("RapidField.SolidInstruments.Messaging.DotNetNative")]
[assembly: InternalsVisibleTo("RapidField.SolidInstruments.Messaging.InMemory")]
[assembly: InternalsVisibleTo("RapidField.SolidInstruments.Messaging.InMemory.UnitTests")]
[assembly: InternalsVisibleTo("RapidField.SolidInstruments.Messaging.RabbitMq")]
[assembly: InternalsVisibleTo("RapidField.SolidInstruments.Messaging.UnitTests")]