21 lines
1.1 KiB
C#
21 lines
1.1 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.Reflection;
|
|
using System.Resources;
|
|
using System.Runtime.CompilerServices;
|
|
using System.Runtime.InteropServices;
|
|
|
|
// we only ever p/invoke into DLLs known to be in the System32 folder
|
|
[assembly: DefaultDllImportSearchPaths(DllImportSearchPath.System32)]
|
|
|
|
[assembly: InternalsVisibleTo("Microsoft.AspNet.Cryptography.Internal.Test")]
|
|
[assembly: InternalsVisibleTo("Microsoft.AspNet.Cryptography.KeyDerivation")]
|
|
[assembly: InternalsVisibleTo("Microsoft.AspNet.Cryptography.KeyDerivation.Test")]
|
|
[assembly: InternalsVisibleTo("Microsoft.AspNet.DataProtection")]
|
|
[assembly: InternalsVisibleTo("Microsoft.AspNet.DataProtection.Abstractions.Test")]
|
|
[assembly: InternalsVisibleTo("Microsoft.AspNet.DataProtection.Extensions.Test")]
|
|
[assembly: InternalsVisibleTo("Microsoft.AspNet.DataProtection.Test")]
|
|
[assembly: AssemblyMetadata("Serviceable", "True")]
|
|
[assembly: NeutralResourcesLanguage("en-US")]
|