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
Copy file name to clipboardExpand all lines: docs/msbuild/how-to-use-project-sdk.md
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ During evaluation of the project, MSBuild adds implicit imports at the top and b
38
38
</Project>
39
39
```
40
40
41
-
There are many SDKs distributed by Microsoft, referenced in the previous example by its moniker `Microsoft.NET.Sdk`. The ones associated with .NET Core and .NET 5 and later are listed at [.NET Project SDK overview](/dotnet/core/project-sdk/overview).
41
+
There are many SDKs distributed by Microsoft. The project SDK referenced in the previous example has the moniker `Microsoft.NET.Sdk`. The project SDKs associated with .NET Core and .NET 5 and later are listed at [.NET Project SDK overview](/dotnet/core/project-sdk/overview).
42
42
43
43
## Reference a project SDK
44
44
@@ -88,16 +88,16 @@ The `Version` attribute isn't required.
88
88
</Project>
89
89
```
90
90
91
-
Explicitly including the imports in your project allows you full control over the order.
91
+
When you explicitly include the imports in your project, you have full control over the order.
92
92
93
93
When using the `<Import/>` element, you can specify an optional `Version` attribute as well. For example, you can specify `<Import Project="Sdk.props" Sdk="My.Custom.Sdk" Version="1.2.3" />`.
94
94
95
95
> [!WARNING]
96
-
> If you are changing project to use `<Import/>` elements, make sure you add both `.props` and `.targets` imports and that you remove the SDK from the `<Project/>` element and `<Sdk/>` elements. Failure to do so will result in doubled imports and an [`MSB4011`](./errors/msb4011.md) warning.
96
+
> If you change your project to use `<Import/>` elements, make sure you add both `.props` and `.targets` imports, and that you remove the SDK from the `<Project/>` element and `<Sdk/>` elements. Failure to do so will result in doubled imports and an [`MSB4011`](./errors/msb4011.md) warning.
97
97
98
98
## How project SDKs are resolved
99
99
100
-
When evaluating the import, MSBuild dynamically resolves the path to the project SDK based on the name and version you specified. MSBuild also has a list of registered SDK resolvers, which are plug-ins that locate project SDKs on your machine. These plug-ins include:
100
+
When evaluating the import, MSBuild dynamically resolves the path to the project SDK based on the name and version you specified. MSBuild also has a list of registered SDK resolvers, which are plug-ins that locate project SDKs on your machine. These plug-ins include:
101
101
102
102
- A NuGet-based resolver that queries your configured package feeds for NuGet packages that match the ID and version of the SDK you specified.
103
103
@@ -127,4 +127,4 @@ Only one version of each project SDK can be used during a build. If you referenc
Copy file name to clipboardExpand all lines: docs/xaml-tools/creating-a-ui-by-using-blend-for-visual-studio.md
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
title: Blend for Visual Studio feature tour
3
3
titleSuffix: ''
4
4
description: Explore the features and workspace UI in Blend for Visual Studio, a component for designing XAML-based Windows and Web applications.
5
-
ms.date: 07/31/2019
5
+
ms.date: 07/31/2024
6
6
ms.topic: overview
7
7
f1_keywords:
8
8
- Blend.Start.Dev12
@@ -11,6 +11,7 @@ ms.author: maleger
11
11
manager: mijacobs
12
12
ms.subservice: xaml-tools
13
13
---
14
+
14
15
# Blend for Visual Studio overview
15
16
16
17
Blend for Visual Studio helps you design XAML-based Windows and Web applications. It provides the same basic XAML design experience as Visual Studio and adds visual designers for advanced tasks such as animations and behaviors. For a comparison between Blend and Visual Studio, see [Design XAML in Visual Studio and Blend for Visual Studio](../xaml-tools/designing-xaml-in-visual-studio.md).
Copy file name to clipboardExpand all lines: docs/xaml-tools/creating-a-ui-by-using-xaml-designer-in-visual-studio.md
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: Create UIs with Visual Studio XAML Designer
3
3
description: Explore XAML Designer workspace UI and features in Blend for Visual Studio that provides a visual interface to help you design XAML-based apps.
4
-
ms.date: 07/04/2023
4
+
ms.date: 08/30/2024
5
5
ms.topic: conceptual
6
6
f1_keywords:
7
7
- VS.XamlDesigner
@@ -21,10 +21,12 @@ The XAML Designer in Visual Studio and Blend for Visual Studio provides a visual
21
21
For advanced users, you can even [customize the XAML Designer](https://github.com/microsoft/xaml-designer-extensibility/blob/master/documents/xaml-designer-extensibility-migration.md).
22
22
23
23
> [!NOTE]
24
-
> Xamarin.Forms does not support a XAML designer. To view your Xamarin.Forms XAML UIs and edit them while the app is running, use XAML Hot Reload for Xamarin.Forms. For more information, see the [XAML Hot Reload for Xamarin.Forms (Preview)](/xamarin/xamarin-forms/xaml/hot-reload/) page.
24
+
> WinUI 3 / .NET MAUI XAML designer is not supported in Visual Studio 2022. To view your WinUI 3 / .NET MAUI XAML UIs and edit them while the app is running, use XAML Hot Reload for WinUI 3 / .NET MAUI. For more information, see the [XAML Hot Reload](../xaml-tools/xaml-hot-reload.md) page.
25
25
26
+
::: moniker range="vs-2019"
26
27
> [!NOTE]
27
-
> WinUI 3 / .NET MAUI XAML designer is not supported in Visual Studio 2022. To view your WinUI 3 / .NET MAUI XAML UIs and edit them while the app is running, use XAML Hot Reload for WinUI 3 / .NET MAUI. For more information, see the [XAML Hot Reload](../xaml-tools/xaml-hot-reload.md) page.
28
+
> Xamarin.Forms does not support a XAML designer. To view your Xamarin.Forms XAML UIs and edit them while the app is running, use XAML Hot Reload for Xamarin.Forms. For more information, see the [XAML Hot Reload for Xamarin.Forms (Preview)](/xamarin/xamarin-forms/xaml/hot-reload/) page.
Copy file name to clipboardExpand all lines: docs/xaml-tools/xaml-hot-reload.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: "XAML Hot Reload for WPF and UWP apps"
3
3
description: Modify XAML code in running .NET MAUI, WinUI 3, Windows Presentation Foundation (WPF), or Universal Windows Platform (UWP) apps with edit and continue features in XAML Hot Reload.
4
-
ms.date: 02/25/2022
4
+
ms.date: 08/27/2024
5
5
ms.topic: conceptual
6
6
helpviewer_keywords:
7
7
- "xaml edit and continue"
@@ -39,10 +39,10 @@ XAML Hot Reload is especially helpful in these scenarios:
39
39
40
40
|Supported Application Types|Operating System and Tools|
41
41
|---|---|
42
-
|.NET MAUI|.NET6+|
42
+
|.NET MAUI|.NET 6+|
43
43
|Windows Presentation Foundation (WPF) |.NET Framework 4.6+, .NET Core, and .NET 5+</br>Windows 7 and later |
44
44
|Universal Windows apps (UWP)|Windows 10 and later, with the [Windows 10 SDK](https://developer.microsoft.com/windows/downloads/windows-sdk/) 14393+ and later|
45
-
|WinUI 3)|Windows 10, version 1809 and later, with the Windows App SDK|
45
+
|WinUI 3|Windows 10, version 1809 and later, with the Windows App SDK|
46
46
47
47
If you're using **.NET MAUI**, see [XAML Hot Reload for .NET MAUI](/dotnet/maui/xaml/hot-reload) for more details.
0 commit comments