File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ public partial class LinuxPlatform : POSIXPlatform
5252
5353 public LinuxPlatform ( ) : base (
5454 underConstruction : new UnderConstructionFlags (
55- supportsScalarUpgrade : false ,
55+ usesCustomUpgrader : false ,
5656 supportsScalarConfig : true ,
5757 supportsNuGetEncryption : false ,
5858 supportsNuGetVerification : false ) )
Original file line number Diff line number Diff line change 77using System . IO ;
88using System . Linq ;
99using System . Runtime . InteropServices ;
10- using System . Text ;
1110using System . Xml ;
1211using System . Xml . Linq ;
1312using System . Xml . XPath ;
@@ -29,7 +28,7 @@ public partial class MacPlatform : POSIXPlatform
2928
3029 public MacPlatform ( ) : base (
3130 underConstruction : new UnderConstructionFlags (
32- supportsScalarUpgrade : true ,
31+ usesCustomUpgrader : false ,
3332 supportsScalarConfig : true ,
3433 supportsNuGetEncryption : false ,
3534 supportsNuGetVerification : false ) )
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public abstract partial class POSIXPlatform : ScalarPlatform
2121
2222 protected POSIXPlatform ( ) : this (
2323 underConstruction : new UnderConstructionFlags (
24- supportsScalarUpgrade : false ,
24+ usesCustomUpgrader : false ,
2525 supportsScalarConfig : false ,
2626 supportsNuGetEncryption : false ,
2727 supportsNuGetVerification : false ) )
Original file line number Diff line number Diff line change @@ -173,12 +173,12 @@ public string ScalarUpgraderExecutableName
173173 public class UnderConstructionFlags
174174 {
175175 public UnderConstructionFlags (
176- bool supportsScalarUpgrade = true ,
176+ bool usesCustomUpgrader = true ,
177177 bool supportsScalarConfig = true ,
178178 bool supportsNuGetEncryption = true ,
179179 bool supportsNuGetVerification = true )
180180 {
181- this . UsesCustomUpgrader = supportsScalarUpgrade ;
181+ this . UsesCustomUpgrader = usesCustomUpgrader ;
182182 this . SupportsScalarConfig = supportsScalarConfig ;
183183 this . SupportsNuGetEncryption = supportsNuGetEncryption ;
184184 this . SupportsNuGetVerification = supportsNuGetVerification ;
You can’t perform that action at this time.
0 commit comments