Skip to content

Commit ebf9e9f

Browse files
committed
Fix suggestions from Copilot review
1 parent 0289439 commit ebf9e9f

File tree

3 files changed

+14
-16
lines changed

3 files changed

+14
-16
lines changed

hub/apps/develop/launch/launch-default-apps-settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ In the following example, `LaunchUriAsync` is called to launch the Windows S
3737
```csharp
3838
private async void LaunchSettingsPage_Click(object sender, RoutedEventArgs e)
3939
{
40-
bool result = await Windows.System.Launcher.LaunchUriAsync(new Uri("ms-settings:defaultapps?registeredAppMachine=" + Uri.EscapeDataString(("Microsoft Edge")));
40+
bool result = await Windows.System.Launcher.LaunchUriAsync(new Uri("ms-settings:defaultapps?registeredAppMachine=" + Uri.EscapeDataString("Microsoft Edge")));
4141
}
4242
```
4343

hub/apps/develop/launch/launch-maps-app.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,9 @@ URI schemes let you open apps by clicking hyperlinks (or programmatically, in yo
2323
- The **ms-drive-to:** URI provides turn-by-turn driving directions from your current location.
2424
- The **ms-walk-to:** URI provides turn-by-turn walking directions from your current location.
2525

26-
For example, the following URI opens the Windows Maps app and displays a map centered over New York City.
26+
For example, the following URI opens the Windows Maps app and displays a map centered over New York City:
2727

28-
```xml
29-
<bingmaps:?cp=40.726966~-74.006076>
30-
```
28+
`bingmaps:?cp=40.726966~-74.006076`
3129

3230
![a map centered over new york city.](images/mapnyc.png)
3331

hub/apps/develop/launch/launch-store-app.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,22 @@ You can launch the Store directly to the product detail page (PDP) for a specifi
3333

3434
Starting with the October 2021 update to the Store app, there are two modes available for displaying the PDP. By default the Store app is opened to the product detail page. You can also launch the store into with a popup experience that displays a smaller PDP dialog with that only displays the essential details for your app and a single action button for users. For the popup experience, you can optionally specify the location of a window that the dialog should be centered above.
3535

36-
| URI Scheme | Description | Notes |
37-
|---------------------------------------------------------------------|-------------|-------|
38-
| ms-windows-store://pdp/?ProductId=9WZDNCRFHVJL | Launches the full product details page (PDP) for a product | This is the recommended way to link to a specific product. |
39-
| ms-windows-store://pdp/?PFN= Microsoft.Office.OneNote_8wekyb3d8bbwe | Launches the full product details page (PDP) for a product | Using the package family name is deprecated. |
40-
| ms-windows-store://pdp/?AppId=00001111-aaaa-2222-bbbb-3333cccc4444 | Launches the full product details page (PDP) for a product | Using the App ID is deprecated. |
41-
| ms-windows-store://pdp/?ProductId=9WZDNCRFHVJL&mode=mini | Launches the popup Store dialog experience | The popup experience only supports Product ID |
36+
| URI Scheme | Description | Notes |
37+
|--------------------------------------------------------------------|-------------|-------|
38+
| ms-windows-store://pdp/?ProductId=9WZDNCRFHVJL | Launches the full product details page (PDP) for a product | This is the recommended way to link to a specific product. |
39+
| ms-windows-store://pdp/?PFN=Microsoft.Office.OneNote_8wekyb3d8bbwe | Launches the full product details page (PDP) for a product | Using the package family name is deprecated. |
40+
| ms-windows-store://pdp/?AppId=00001111-aaaa-2222-bbbb-3333cccc4444 | Launches the full product details page (PDP) for a product | Using the App ID is deprecated. |
41+
| ms-windows-store://pdp/?ProductId=9WZDNCRFHVJL&mode=mini | Launches the popup Store dialog experience | The popup experience only supports Product ID |
4242

4343
## Launching the rating and review experience for a product
4444

4545
To enable users to review your app, you can link to that PDP and launch directly into the rating and review dialog. Store ID is the recommended method to launch the Store app to a specific product detail page.
4646

47-
| URI Scheme | Description | Notes |
48-
|------------------------------------------------------------------------|-------------|-------|
49-
| ms-windows-store://review/?ProductId=9WZDNCRFHVJL | Launches the write a review experience for a product. | Using StoreId is recommended |
50-
| ms-windows-store://review/?PFN= Microsoft.Office.OneNote_8wekyb3d8bbwe | Launches the write a review experience for a product. | Using product family name is deprecated. |
51-
| ms-windows-store://review/?AppId=11112222-bbbb-3333-cccc-4444dddd5555 | Launches the write a review experience for a product. | Using productid is deprecated |
47+
| URI Scheme | Description | Notes |
48+
|-----------------------------------------------------------------------|-------------|-------|
49+
| ms-windows-store://review/?ProductId=9WZDNCRFHVJL | Launches the write a review experience for a product. | Using StoreId is recommended |
50+
| ms-windows-store://review/?PFN=Microsoft.Office.OneNote_8wekyb3d8bbwe | Launches the write a review experience for a product. | Using product family name is deprecated. |
51+
| ms-windows-store://review/?AppId=11112222-bbbb-3333-cccc-4444dddd5555 | Launches the write a review experience for a product. | Using productid is deprecated |
5252

5353
## Searching the Store
5454

0 commit comments

Comments
 (0)