コード例 #1
0
ファイル: Tooling.cs プロジェクト: jiuzhuaxiong/WOA-Deployer
        public async Task ToogleDualBoot(bool isEnabled)
        {
            var enabledStr = isEnabled ? "Enabling" : "Disabling";

            Log.Information($"{enabledStr} Dual Boot");
            await phone.EnableDualBoot(isEnabled);

            Log.Information("Done");
        }