Skip to content

Commit 6d5fba4

Browse files
committed
Update .NET Core to .NET where possible
1 parent 6859c70 commit 6d5fba4

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

hub/apps/desktop/visual-studio-templates.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ There are two different technologies you can use to build C++ UWP apps:
6060
* The recommended technology is [C++/WinRT](/windows/uwp/cpp-and-winrt-apis/). This is a C++ language projection that is implemented entirely in header files, and designed to provide you with first-class access to the modern WinRT API.
6161
* Alternatively, you can use the older [C++/CX](/cpp/cppcx/visual-c-language-reference-c-cx) set of extensions. C++/CX is still supported, but we recommend that you use C++/WinRT instead.
6262

63-
To access the UWP C++ project templates when you create a new project in Visual Studio, filter the language to **C++**, the platform to **Windows**, and the project type to **UWP**.
63+
To access the UWP C++ project templates when you create a new project in Visual Studio, filter the language to **C++**, the platform to **Windows**, and the project type to **UWP**.
6464

6565
> [!NOTE]
6666
> By default, the **Universal Windows Platform development** workload in Visual Studio only provides access to the C++/CX project templates. To access the C++/WinRT project templates, you must install the [C++/WinRT VSIX](/windows/uwp/cpp-and-winrt-apis/intro-to-using-cpp-with-winrt#visual-studio-support-for-cwinrt-xaml-the-vsix-extension-and-the-nuget-package) package.
@@ -146,8 +146,8 @@ You can use these project templates to create apps using C# and .NET.
146146

147147
| Template | Description |
148148
|----------|----------|
149-
| WPF Application | Creates a [WPF](/dotnet/framework/wpf/) app that targets [.NET 6](/dotnet/core/whats-new/dotnet-6) (or later) or [.NET Core 3.1](/dotnet/core/whats-new/dotnet-core-3-1). For a walkthrough of this project template, see [Create a WPF application](/visualstudio/get-started/csharp/tutorial-wpf). |
149+
| WPF Application | Creates a [WPF](/dotnet/framework/wpf/) app that targets [.NET 6](/dotnet/core/whats-new/dotnet-6) (or later). For a walkthrough of this project template, see [Create a WPF application](/visualstudio/get-started/csharp/tutorial-wpf). |
150150
| WPF App (.NET Framework) | Creates a [WPF](/dotnet/framework/wpf/) app that targets the [.NET Framework](/dotnet/framework/). For a walkthrough of this project template, see [Tutorial: Create your first WPF application](/dotnet/framework/wpf/getting-started/walkthrough-my-first-wpf-desktop-application). |
151-
| Windows Forms App | Creates a [Windows Forms](/dotnet/framework/winforms/) app that targets [.NET 6](/dotnet/core/whats-new/dotnet-6) (or later) or [.NET Core 3.1](/dotnet/core/whats-new/dotnet-core-3-1). |
151+
| Windows Forms App | Creates a [Windows Forms](/dotnet/framework/winforms/) app that targets [.NET 6](/dotnet/core/whats-new/dotnet-6) (or later). |
152152
| Windows Forms App (.NET Framework) | Creates a [Windows Forms](/dotnet/framework/winforms/) app that targets the [.NET Framework](/dotnet/framework/). For a walkthrough of this project template, see [Create a Windows Forms app in Visual Studio with C#](/visualstudio/ide/create-csharp-winform-visual-studio). |
153-
| Windows Application Packaging Project | Creates a project that you can use to build a WPF or Windows Forms app into an [MSIX package](/windows/msix/overview). This provides a modern deployment experience, the ability to integrate with Windows features via package extensions, and much more. For more information, see [Windows Application Packaging Project](/windows/msix/desktop/desktop-to-uwp-packaging-dot-net). |
153+
| Windows Application Packaging Project | Creates a project that you can use to build a WPF or Windows Forms app into an [MSIX package](/windows/msix/overview). This provides a modern deployment experience, the ability to integrate with Windows features via package extensions, and much more. For more information, see [Windows Application Packaging Project](/windows/msix/desktop/desktop-to-uwp-packaging-dot-net). |

hub/apps/index.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,6 @@ additionalContent:
116116
summary: Enables developers to pack and unpack app packages on a variety of platforms.
117117
url: https://github.com/Microsoft/msix-packaging
118118
- title: .NET
119-
summary: Engage with .NET open source projects including .NET Core, WPF, Windows Forms, and much more.
119+
summary: Engage with .NET open source projects including .NET, WPF, Windows Forms, and much more.
120120
url: https://github.com/microsoft/dotnet
121121
footer: "[@WindowsDocs on Twitter](https://twitter.com/WindowsDocs) - [OneDevMinute on YouTube](/shows/One-Dev-Minute/?WT.mc_id=odm-c9-niner) - [Windows developer support](https://developer.microsoft.com/windows/support) - [Stack Overflow](https://stackoverflow.com/questions/tagged/windows)"

hub/apps/trace-processing/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Microsoft.Windows.EventTracing.Processing.All
2929

3030
You can use this package in a console app to list the process command lines contained in an ETW trace (.etl file).
3131

32-
1. Create a new .NET Core Console App. In Visual Studio, select File, New, Project..., and choose the Console App (.NET Core) template for C#.
32+
1. Create a new .NET Console App. In Visual Studio, select File, New, Project..., and choose the Console App template for C#.
3333

3434
Enter a Project name, for example, TraceProcessorQuickstart, and choose Create.
3535

@@ -126,4 +126,4 @@ In this quickstart, you created a console application, installed TraceProcessor,
126126

127127
Process information is just one of many kinds of data stored in an ETW trace that your application can access.
128128

129-
The next step is to [look closer at TraceProcessor](tutorial.md) and the other data sources it can access.
129+
The next step is to [look closer at TraceProcessor](tutorial.md) and the other data sources it can access.

hub/apps/trace-processing/tutorial.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ There are a couple of project settings we recommend using with TraceProcessor:
6565

6666
1. We recommend running exes as 64-bit.
6767

68-
The Visual Studio default for a new C# .NET Framework console application is Any CPU with Prefer 32-bit checked. The default for .NET Core may already have the recommended setting.
68+
The Visual Studio default for a new C# .NET Framework console application is Any CPU with Prefer 32-bit checked. The default for .NET may already have the recommended setting.
6969

7070
Trace processing can be memory-intensive, especially with larger traces, and we recommend changing Platform target to x64 (or unchecking Prefer 32-bit) in exes that use TraceProcessor. To change these settings, see the Build tab under Properties for the project. To change these settings for all configurations, ensure that the Configuration dropdown is set to All Configurations, rather than the default of the current configuration only.
7171

@@ -144,4 +144,4 @@ See also the extension methods on [ITraceSource](/dotnet/api/microsoft.windows.e
144144

145145
In this overview, you learned how to access trace data using TraceProcessor and the built-in data sources that it can access.
146146

147-
The next step is to learn how to [extend](extensibility.md) TraceProcessor to access custom trace data.
147+
The next step is to learn how to [extend](extensibility.md) TraceProcessor to access custom trace data.

hub/dev-environment/docker/overview.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Using containers for remote development and deploying applications with the Dock
9191

9292
![Basic Docker taxonomy infographic for containers, images, and registries](../../images/taxonomy-of-docker-terms-and-concepts.png)
9393

94-
## .NET Core and Docker
94+
## .NET and Docker
9595

9696
:::row:::
9797
:::column:::
@@ -106,8 +106,8 @@ Using containers for remote development and deploying applications with the Dock
106106
:::column-end:::
107107
:::column:::
108108
[![Docker Taxonomy infographic](../../images/taxonomy-of-docker-terms-and-concepts.png)](/dotnet/core/docker/build-container?tabs=windows)<br>
109-
**[Tutorial: Containerize a .NET Core app](/dotnet/core/docker/build-container?tabs=windows)**<br>
110-
Learn how to containerize a .NET Core application with Docker, including creation of a Dockerfile, essential commands, and cleaning up resources.
109+
**[Tutorial: Containerize a .NET app](/dotnet/core/docker/build-container?tabs=windows)**<br>
110+
Learn how to containerize a .NET application with Docker, including creation of a Dockerfile, essential commands, and cleaning up resources.
111111
:::column-end:::
112112
:::column:::
113113
[![Inner-loop dev workflow with Docker infographic](../../images/dotnet-docker-workflow.png)](/dotnet/architecture/microservices/docker-application-development-process/docker-app-development-workflow)<br>

hub/dev-environment/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,12 @@ The first PC platform to provide centralized AI assistance and designed to help
119119
:::column:::
120120
[![C# icon](../images/csharp-logo.png)](/dotnet/csharp/)<br>
121121
**[Get started with C#](/dotnet/csharp/)**<br>
122-
Get started building apps using C# and .NET Core.
122+
Get started building apps using C# and .NET.
123123
:::column-end:::
124124
:::column:::
125125
[![F# icon](../images/fsharp-logo.png)](/dotnet/fsharp/)<br>
126126
**[Get started with F#](/dotnet/fsharp/)**<br>
127-
Get started building apps using F# and .NET Core.
127+
Get started building apps using F# and .NET.
128128
:::column-end:::
129129
:::column:::
130130
[![Rust icon](../images/rust-icon.png)](./rust/index.yml)<br>

hub/web/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ Microsoft offers a variety of resources for web developers, including new tools
167167
:::column:::
168168
[![ASP.NET icon](../images/aspnet.png)](https://dotnet.microsoft.com/apps/aspnet)<br>
169169
**[ASP.NET](/aspnet/)**<br>
170-
A cross-platform framework for building web apps and services, Internet of Things (IoT) apps, or mobile backends with .NET and C#. Build rich interactive web UI with [Blazor](/aspnet/core/blazor/). Use your favorite dev tools on Windows, macOS, and Linux. Deploy to the cloud or on-premises. Run on .NET Core.<br>
170+
A cross-platform framework for building web apps and services, Internet of Things (IoT) apps, or mobile backends with .NET and C#. Build rich interactive web UI with [Blazor](/aspnet/core/blazor/). Use your favorite dev tools on Windows, macOS, and Linux. Deploy to the cloud or on-premises. Run on .NET.<br>
171171
[Install ASP.NET](https://dotnet.microsoft.com/download)
172172
:::column-end:::
173173
:::column:::

0 commit comments

Comments
 (0)