You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add DeploymentManager CSharp Sample
* Update project to not enable signing
* Edit readme and some comments
* Add license information to xaml and cs files.
* Update README.md
* Incorporate PR feedback
* Incorporating further PR feedback
* update to 1.0 GA and add link from main readme
Co-authored-by: Santosh Chintalapati <[email protected]>
Co-authored-by: Angela Zhang <[email protected]>
Copy file name to clipboardExpand all lines: README.md
+5-4Lines changed: 5 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,18 +2,19 @@
2
2
3
3
This repository hosts samples for the [Windows App SDK](https://github.com/microsoft/WindowsAppSDK). Samples for various features shipping in the Windows App SDK will be added to this repository. For more information about the Windows App SDK, visit the [Windows App SDK Documentation](https://docs.microsoft.com/windows/apps/windows-app-sdk/). To learn more about the Windows App SDK design or to contribute to the project, make feature proposals, or start discussions, visit the [Windows App SDK GitHub page](https://github.com/microsoft/WindowsAppSDK).
4
4
5
-
## List of samples
5
+
## List of samples
6
6
7
7
#### App Lifecycle and System Services
8
8
-[App Lifecycle](Samples/AppLifecycle): These samples demonstrate app instancing using the AppLifecycle APIs. They include the following features:
9
9
-[Activation](Samples/AppLifecycle/Activation): These samples demonstrate support for rich activation kinds.
10
10
-[Instancing](Samples/Applifecycle/Instancing): These samples demonstrate support for single and selective multi-instancing.
11
-
-[Power Notifications](Samples/Applifecycle/StateNotifications): These samples demonstrate the power/system state notifications for managing app workload.
11
+
-[Power Notifications](Samples/Applifecycle/StateNotifications): These samples demonstrate the power/system state notifications for managing app workload.
12
12
13
13
#### Data and Files
14
14
-[Resource Management](Samples/ResourceManagement): These samples demonstrates app resource management using the MRT Core APIs.
15
15
16
16
#### Deployment
17
+
-[Deployment Manager](Samples/DeploymentManager): This sample demonstrates how to initialize and access deployment information for the Windows App SDK runtime.
17
18
-[Unpackaged](Samples/Unpackaged): These samples demonstrate auto-initialization with the Windows App SDK package from non-MSIX (unpackaged) application.
18
19
19
20
#### Dynamic Dependencies
@@ -23,7 +24,7 @@ This repository hosts samples for the [Windows App SDK](https://github.com/micro
23
24
-[Text Rendering](Samples/TextRendering): This sample is a gallery of the DWriteCore APIs demonstrating text rendering.
24
25
25
26
#### User Interface and Input
26
-
-[Windowing](Samples/Windowing): This sample demonstrates how to manage app windows using the Windowing APIs.
27
+
-[Windowing](Samples/Windowing): This sample demonstrates how to manage app windows using the Windowing APIs.
27
28
-[XAML Controls Gallery](https://github.com/microsoft/Xaml-Controls-Gallery/tree/winui3): This is a sample app that showcases all of the WinUI 3 controls in action.
28
29
29
30
## Requirements
@@ -33,7 +34,7 @@ Thes Windows App SDK samples have the following system requirements:
33
34
- Windows 10, version 1809 (build 17763) or later.
34
35
35
36
-[Visual Studio 2022](https://visualstudio.microsoft.com/downloads/) or Visual Studio 2019 version 16.9 or later, with the following workloads and components:
36
-
37
+
37
38
- Universal Windows Platform development
38
39
- .NET Desktop Development (needed even if you're only building C++ Win32 apps)
39
40
- Desktop development with C++ (needed even if you're only building .NET apps)
description: "Shows how to use the Windows App Runtime Deployment API"
10
+
urlFragment: deployment
11
+
---
12
+
# Deployment Manager sample
13
+
14
+
This sample demonstrates how to use the DeploymentManager class to ensure the WindowsAppRuntime is initialized and in a good state.
15
+
16
+
## Requirements
17
+
C# sample requires either .NET SDK 5.0.205, .NET SDK 5.0.401, or later.
18
+
19
+
Before building the sample, make sure to set up your environment correctly by following the steps [here](https://docs.microsoft.com/windows/apps/windows-app-sdk/set-up-your-development-environment).
20
+
21
+
## Building and running any of the samples
22
+
1. Open the solution file (.sln) in the subfolder of your preferred sample in Visual Studio.
23
+
2. Build the solution.
24
+
3. Right click on the solution and click **Deploy Solution**
0 commit comments