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

BinaryCompatibility.cs « ReferenceSources « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 77351195ca966b06a9c8769d5944de8ee4e036c0 (plain)
1
2
3
4
5
6
7
8
namespace System.Runtime.Versioning
{
	static class BinaryCompatibility
	{
		public static readonly bool TargetsAtLeast_Desktop_V4_5 = true;
		public static readonly bool TargetsAtLeast_Desktop_V4_5_1 = true;
	}
}