1 write to TargetsAtLeastFramework472
System.Web (1)
Util\BinaryCompatibility.cs (1)
42TargetsAtLeastFramework472 = (version >= VersionUtil.Framework472);
8 references to TargetsAtLeastFramework472
System.Web (8)
Compilation\AssemblyBuilder.cs (2)
653string hashAlgorithm = BinaryCompatibility.Current.TargetsAtLeastFramework472 ? "SHA256" : "SHA1"; 655ChecksumAlgorithmId = (BinaryCompatibility.Current.TargetsAtLeastFramework472 ? s_codeChecksumSha256Id : s_codeChecksumSha1Id)
Compilation\BaseCodeDomTreeGenerator.cs (1)
361if (BinaryCompatibility.Current.TargetsAtLeastFramework472 &&
Compilation\ObjectFactoryCodeDomTreeGenerator.cs (1)
94if (BinaryCompatibility.Current.TargetsAtLeastFramework472 && ccu != null) {
Compilation\TemplateControlCodeDomTreeGenerator.cs (1)
276if (BinaryCompatibility.Current.TargetsAtLeastFramework472 &&
UI\ParseRecorder.cs (2)
49if (!BinaryCompatibility.Current.TargetsAtLeastFramework472) { 57if (BinaryCompatibility.Current.TargetsAtLeastFramework472) {
UI\WebControls\TextBox.cs (1)
424if (BinaryCompatibility.Current.TargetsAtLeastFramework472 && MaxLength > 0) {