File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ public partial class LinuxPlatform : POSIXPlatform
2121
2222 public LinuxPlatform ( ) : base (
2323 underConstruction : new UnderConstructionFlags (
24- supportsScalarUpgrade : false ,
24+ usesCustomUpgrader : false ,
2525 supportsScalarConfig : true ,
2626 supportsNuGetEncryption : false ,
2727 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 ;
@@ -18,7 +17,7 @@ public partial class MacPlatform : POSIXPlatform
1817 {
1918 public MacPlatform ( ) : base (
2019 underConstruction : new UnderConstructionFlags (
21- supportsScalarUpgrade : true ,
20+ usesCustomUpgrader : false ,
2221 supportsScalarConfig : true ,
2322 supportsNuGetEncryption : false ,
2423 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