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

PlatformAssemblies.cs « Support « Mono.Linker.Tests.Cases.Expectations « test - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d3c2dfcbd6c853f95c24dccb041cd420840c7f7f (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Mono.Linker.Tests.Cases.Expectations.Metadata
{
	public static class PlatformAssemblies
	{
#if NETCOREAPP
		public const string CoreLib = "System.Private.CoreLib.dll";
#else
		public const string CoreLib = "mscorlib.dll";
#endif
	}
}