-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathAssemblyAttributes.cs
More file actions
13 lines (11 loc) · 967 Bytes
/
AssemblyAttributes.cs
File metadata and controls
13 lines (11 loc) · 967 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
// =================================================================================================================================
// 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.Command.UnitTests")]
[assembly: InternalsVisibleTo("RapidField.SolidInstruments.EventAuthoring")]
[assembly: InternalsVisibleTo("RapidField.SolidInstruments.InversionOfControl")]
[assembly: InternalsVisibleTo("RapidField.SolidInstruments.InversionOfControl.Autofac")]
[assembly: InternalsVisibleTo("RapidField.SolidInstruments.InversionOfControl.DotNetNative")]
[assembly: InternalsVisibleTo("RapidField.SolidInstruments.Messaging")]