Skip to content

Commit e9c8549

Browse files
update toc remove old doc updates no-one needs (#3787)
* update toc remove old doc updates no-one needs * update toc remove old doc updates no-one needs
1 parent f5e07ca commit e9c8549

17 files changed

+83
-928
lines changed

.openpublishing.redirection.json

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,55 @@
11
{
22
"redirections": [
3+
{
4+
"source_path": "uwp/whats-new/windows-docs-august-2017.md",
5+
"redirect_url": "/windows/uwp/",
6+
"redirect_document_id": false
7+
},
8+
{
9+
"source_path": "uwp/whats-new/windows-docs-august-2018.md",
10+
"redirect_url": "/windows/uwp/",
11+
"redirect_document_id": false
12+
},
13+
{
14+
"source_path": "uwp/whats-new/windows-docs-december-2017.md",
15+
"redirect_url": "/windows/uwp/",
16+
"redirect_document_id": false
17+
},
18+
{
19+
"source_path": "uwp/whats-new/windows-docs-february-2018.md",
20+
"redirect_url": "/windows/uwp/",
21+
"redirect_document_id": false
22+
},
23+
{
24+
"source_path": "uwp/whats-new/windows-docs-january-2019.md",
25+
"redirect_url": "/windows/uwp/",
26+
"redirect_document_id": false
27+
},
28+
{
29+
"source_path": "uwp/whats-new/windows-docs-july-2017.md",
30+
"redirect_url": "/windows/uwp/",
31+
"redirect_document_id": false
32+
},
33+
{
34+
"source_path": "uwp/whats-new/windows-docs-july-2018.md",
35+
"redirect_url": "/windows/uwp/",
36+
"redirect_document_id": false
37+
},
38+
{
39+
"source_path": "uwp/whats-new/windows-docs-may-2018.md",
40+
"redirect_url": "/windows/uwp/",
41+
"redirect_document_id": false
42+
},
43+
{
44+
"source_path": "uwp/whats-new/windows-docs-september-2017.md",
45+
"redirect_url": "/windows/uwp/",
46+
"redirect_document_id": false
47+
},
48+
{
49+
"source_path": "uwp/whats-new/windows-docs-september-2018.md",
50+
"redirect_url": "/windows/uwp/",
51+
"redirect_document_id": false
52+
},
353
{
454
"source_path": "uwp/monetize/get-xbox-live-analytics.md",
555
"redirect_url": "/windows/uwp/publish/xbox-analytics-report",

uwp/get-started/create-a-basic-windows-10-app-in-cpp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
ms.assetid: DC235C16-8DAF-4078-9365-6612A10F3EC3
3-
title: Create a "Hello, World!" app using C++/CX
3+
title: Create a "Hello, World!" UWP app using C++/CX
44
description: With Microsoft Visual Studio, you can use C++/CX to develop an app that runs on Windows. These apps have a UI that is defined in Extensible Application Markup Language (XAML).
55
ms.date: 06/11/2018
66
ms.topic: article
77
keywords: uwp, windows 10, windows 11
88
ms.localizationpriority: medium
99
---
1010

11-
# Create a "Hello, World!" app in C++/CX
11+
# Create a "Hello, World!" UWP app in C++/CX
1212

1313
> [!IMPORTANT]
1414
> This tutorial uses C++/CX. Microsoft has released C++/WinRT: an entirely standard modern C++17 language projection for Windows Runtime (WinRT) APIs. For more information on this language, please see [C++/WinRT](../cpp-and-winrt-apis/index.md).

uwp/get-started/create-a-basic-windows-10-app-in-cppwinrt.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
2-
title: Create a "Hello, World!" app using C++/WinRT
2+
title: Create a "Hello, World!" UWP app using C++/WinRT
33
description: This topic walks you through creating a Windows UWP "Hello, World!" app using C++/WinRT. The app's UI is defined using Extensible Application Markup Language (XAML).
44
ms.date: 07/11/2020
55
ms.topic: article
66
keywords: windows 10, uwp, cppwinrt, C++/WinRT
77
ms.localizationpriority: medium
88
---
99

10-
# Create a "Hello, World!" app using C++/WinRT
10+
# Create a "Hello, World!" UWP app using C++/WinRT
1111

1212
This topic walks you through creating a Windows Universal Windows Platform (UWP) "Hello, World!" app using C++/WinRT. The app's user interface (UI) is defined using Extensible Application Markup Language (XAML).
1313

uwp/get-started/create-a-hello-world-app-xaml-universal.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
---
22
ms.assetid: 03A74239-D4B6-4E41-B2FA-6C04F225B844
3-
title: Learn how to create a "Hello, World!" app (XAML)
3+
title: Learn how to create a "Hello, World!" UWP app (XAML)
44
description: Use Extensible Application Markup Language (XAML) with C# to create a simple Hello, world app that targets the Universal Windows Platform (UWP) on Windows 10.
55
ms.date: 03/06/2017
66
ms.topic: article
77
keywords: windows 10, uwp, first app, hello world
88
ms.localizationpriority: medium
99
---
1010

11-
# Create a "Hello, World!" app (XAML)
11+
# Create a "Hello, World!" UWP app (XAML)
1212

1313
This tutorial teaches you how to use XAML and C# to create a simple "Hello, World!" app for the Universal Windows Platform (UWP) on Windows. With a single project in Microsoft Visual Studio, you can build an app that runs on all versions of Windows 10 and Windows 11.
1414

@@ -19,7 +19,7 @@ Here you'll learn how to:
1919
- Run the project on the local desktop in Visual Studio.
2020
- Use a SpeechSynthesizer to make the app talk when you press a button.
2121

22-
## Before you start...
22+
## Before you start..
2323

2424
- [What's a Universal Windows app?](universal-application-platform-guide.md)
2525
- [Download Visual Studio (and Windows)](https://developer.microsoft.com/windows/downloads). If you need a hand, learn how to [get set up](/windows/apps/get-started/get-set-up).

uwp/get-started/toc.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
- name: Overview
22
href: index.md
3-
- name: What's a Windows app?
3+
- name: What's a UWP app?
44
href: ../get-started/universal-application-platform-guide.md
55
- name: Start coding
66
href: ../get-started/create-uwp-apps.md
@@ -16,11 +16,11 @@
1616
- name: Your first app
1717
href: ../get-started/your-first-app.md
1818
items:
19-
- name: A "Hello, World!" app in C#
19+
- name: A "Hello, World!" UWP app in C#
2020
href: ../get-started/create-a-hello-world-app-xaml-universal.md
21-
- name: A "Hello, World!" app in C++/WinRT
21+
- name: A "Hello, World!" UWP app in C++/WinRT
2222
href: ../get-started/create-a-basic-windows-10-app-in-cppwinrt.md
23-
- name: A "Hello, World!" app in C++/CX
23+
- name: A "Hello, World!" UWP app in C++/CX
2424
href: ../get-started/create-a-basic-windows-10-app-in-cpp.md
25-
- name: Building a complex app
25+
- name: Building a complex UWP app
2626
href: ../get-started/plan-your-app.md

uwp/toc.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@ items:
22
- name: UWP documentation
33
href: index.yml
44
items:
5-
- name: What's new
6-
href: whats-new/toc.yml
7-
- name: Get started
5+
6+
- name: Get started with UWP
87
href: get-started/toc.yml
9-
- name: Develop apps
8+
- name: Develop UWP apps
109
href: develop/toc.yml
11-
- name: Develop games
10+
- name: Develop UWP games
1211
href: gaming/toc.yml
12+
- name: Windows 10 build history
13+
href: whats-new/toc.yml
1314
- name: API reference
1415
href: /uwp/

uwp/whats-new/toc.yml

Lines changed: 15 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,65 +1,44 @@
1-
- name: What's new in Windows 10 for developers, build 19041
2-
href: ../whats-new/windows-10-build-19041.md
1+
2+
- name: Builds
33
items:
4-
- name: API additions in Windows 10, build 19041
5-
href: ../whats-new/windows-10-build-19041-api-diff.md
6-
- name: Previous versions of Windows 10
7-
items:
8-
- name: What's new in Windows 10 for developers, build 18362
4+
- name: Build 19041
5+
href: ../whats-new/windows-10-build-19041.md
6+
items:
7+
- name: API additions in Windows 10, build 19041
8+
href: ../whats-new/windows-10-build-19041-api-diff.md
9+
- name: Build 18362
910
href: ../whats-new/windows-10-build-18362.md
1011
items:
1112
- name: API additions in Windows 10, build 18362
1213
href: ../whats-new/windows-10-build-18362-api-diff.md
13-
- name: What's new in Windows 10 for developers, build 17763
14+
- name: Build 17763
1415
href: ../whats-new/windows-10-build-17763.md
1516
items:
1617
- name: API additions in Windows 10, build 17763
1718
href: ../whats-new/windows-10-build-17763-api-diff.md
18-
- name: What's new in Windows 10 for developers, build 17134
19+
- name: Build 17134
1920
href: ../whats-new/windows-10-build-17134.md
2021
items:
2122
- name: API additions in Windows 10, build 17134
2223
href: ../whats-new/windows-10-build-17134-api-diff.md
23-
- name: What's new in Windows 10 for developers, build 16299
24+
- name: Build 16299
2425
href: ../whats-new/windows-10-build-16299.md
2526
items:
2627
- name: API additions in Windows 10, build 16299
2728
href: ../whats-new/windows-10-build-16299-api-diff.md
28-
- name: What's new in Windows 10, build 15063
29+
- name: Build 15063
2930
href: ../whats-new/windows-10-build-15063.md
3031
items:
3132
- name: API additions in Windows 10, build 15063
3233
href: ../whats-new/windows-10-build-15063-api-diff.md
33-
- name: What's new in Windows 10, build 14393
34+
- name: Build 14393
3435
href: ../whats-new/windows-10-build-14393.md
3536
items:
3637
- name: API additions in Windows 10, build 14393
3738
href: ../whats-new/windows-10-build-14393-api-diff.md
38-
- name: What's new in Windows 10, build 10586
39+
- name: Build 10586
3940
href: ../whats-new/windows-10-build-10586.md
40-
- name: What's new in Windows 10, build 10240
41+
- name: Build 10240
4142
href: ../whats-new/windows-10-build-10240.md
42-
- name: Previous doc update summaries
43-
items:
44-
- name: What's new in the Windows docs, January 2019
45-
href: ../whats-new/windows-docs-january-2019.md
46-
- name: What's new in the Windows docs, September 2018
47-
href: ../whats-new/windows-docs-september-2018.md
48-
- name: What's new in the Windows docs, August 2018
49-
href: ../whats-new/windows-docs-august-2018.md
50-
- name: What's new in the Windows docs, July 2018
51-
href: ../whats-new/windows-docs-july-2018.md
52-
- name: What's new in the Windows docs, May 2018
53-
href: ../whats-new/windows-docs-may-2018.md
54-
- name: What's new in the Windows docs, February 2018
55-
href: ../whats-new/windows-docs-february-2018.md
56-
- name: What's new in the Windows docs, December 2017
57-
href: ../whats-new/windows-docs-december-2017.md
58-
- name: What's new in the Windows docs, September 2017
59-
href: ../whats-new/windows-docs-september-2017.md
60-
- name: What's new in the Windows docs, August 2017
61-
href: ../whats-new/windows-docs-august-2017.md
62-
- name: What's new in the Windows docs, July 2017
63-
href: ../whats-new/windows-docs-july-2017.md
6443
- name: Experimental APIs
6544
href: ../whats-new/experimental-apis.md

uwp/whats-new/windows-docs-august-2017.md

Lines changed: 0 additions & 77 deletions
This file was deleted.

uwp/whats-new/windows-docs-august-2018.md

Lines changed: 0 additions & 69 deletions
This file was deleted.

0 commit comments

Comments
 (0)