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

PlatformAssemblies.cs « Helpers « Mono.Linker.Tests.Cases.Expectations « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c2e77e98f8d4452c504d910aefe869cdbf039cc5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) .NET Foundation and contributors. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace Mono.Linker.Tests.Cases.Expectations.Helpers
{
	public static class PlatformAssemblies
	{
#if NETCOREAPP
		public const string CoreLib = "System.Private.CoreLib.dll";
#else
		public const string CoreLib = "mscorlib.dll";
#endif
	}
}