File tree Expand file tree Collapse file tree
src/UniGetUI.PackageEngine.PackageManagerClasses/Packages/Classes Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -226,7 +226,9 @@ public void LoadFromDisk()
226226
227227 var rawData = File . ReadAllText ( optionsFile . FullName ) ;
228228 JsonNode ? jsonData = JsonNode . Parse ( rawData ) ;
229- if ( jsonData is null ) return ;
229+ if ( jsonData is null )
230+ return ;
231+
230232 var serializedOptions = SerializableInstallationOptions_v1 . FromJsonString ( jsonData ) ;
231233 FromSerializable ( serializedOptions ) ;
232234 }
@@ -256,7 +258,8 @@ public override string ToString()
256258 $ "InstallationScope={ InstallationScope } ;" +
257259 $ "InstallationScope={ CustomInstallLocation } ;" +
258260 $ "CustomParameters={ customparams } ;" +
259- $ "RemoveDataOnUninstall={ RemoveDataOnUninstall } >";
261+ $ "RemoveDataOnUninstall={ RemoveDataOnUninstall } ;" +
262+ $ "PreRelease={ PreRelease } >";
260263 }
261264 }
262265}
You can’t perform that action at this time.
0 commit comments