-
Notifications
You must be signed in to change notification settings - Fork 322
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Santosh Chintalapati
committed
Sep 28, 2022
1 parent
5124606
commit 38cacca
Showing
9 changed files
with
90 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// Copyright (c) Microsoft Corporation and Contributors. | ||
// Licensed under the MIT License. | ||
#include <pch.h> | ||
#include <DeploymentRepairOptions.h> | ||
#include <Microsoft.Windows.ApplicationModel.WindowsAppRuntime.DeploymentRepairOptions.g.cpp> | ||
|
||
namespace winrt::Microsoft::Windows::ApplicationModel::WindowsAppRuntime::implementation | ||
{ | ||
bool DeploymentRepairOptions::ForceDeployment() | ||
{ | ||
return m_ForceDeployment; | ||
} | ||
void DeploymentRepairOptions::ForceDeployment(bool value) | ||
{ | ||
m_ForceDeployment = value; | ||
} | ||
bool DeploymentRepairOptions::OnErrorShowUI() | ||
{ | ||
return m_OnErrorShowUI; | ||
} | ||
void DeploymentRepairOptions::OnErrorShowUI(bool value) | ||
{ | ||
m_OnErrorShowUI = value; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
// Copyright (c) Microsoft Corporation and Contributors. | ||
// Licensed under the MIT License. | ||
|
||
#pragma once | ||
|
||
#include "Microsoft.Windows.ApplicationModel.WindowsAppRuntime.DeploymentRepairOptions.g.h" | ||
|
||
namespace winrt::Microsoft::Windows::ApplicationModel::WindowsAppRuntime::implementation | ||
{ | ||
struct DeploymentRepairOptions : DeploymentRepairOptionsT<DeploymentRepairOptions> | ||
{ | ||
DeploymentRepairOptions() = default; | ||
|
||
bool ForceDeployment(); | ||
void ForceDeployment(bool value); | ||
bool OnErrorShowUI(); | ||
void OnErrorShowUI(bool value); | ||
|
||
private: | ||
bool m_ForceDeployment{}; | ||
bool m_OnErrorShowUI{}; | ||
}; | ||
} | ||
namespace winrt::Microsoft::Windows::ApplicationModel::WindowsAppRuntime::factory_implementation | ||
{ | ||
struct DeploymentRepairOptions : DeploymentRepairOptionsT<DeploymentRepairOptions, implementation::DeploymentRepairOptions> | ||
{ | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters