Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/libraries/Common/tests/TestUtilities/Interop/Interop.Libraries.cs')
-rw-r--r--src/libraries/Common/tests/TestUtilities/Interop/Interop.Libraries.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/libraries/Common/tests/TestUtilities/Interop/Interop.Libraries.cs b/src/libraries/Common/tests/TestUtilities/Interop/Interop.Libraries.cs
new file mode 100644
index 00000000000..e1501f9a79e
--- /dev/null
+++ b/src/libraries/Common/tests/TestUtilities/Interop/Interop.Libraries.cs
@@ -0,0 +1,13 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+internal static partial class Interop
+{
+ internal static partial class Libraries
+ {
+ // Shims
+ public const string CryptoNative = "System.Security.Cryptography.Native.OpenSsl";
+ public const string SystemNative = "System.Native";
+ }
+}