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: 746d3783dc7199e1e057c5c08ac380287e22b11f (plain)
1
2
3
4
5
6
7
8
9
10
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;
		// should be a property for System.Xml.BinaryCompatibility
		public static bool TargetsAtLeast_Desktop_V4_5_2 => true;
	}
}