Skip to content

Commit 1041e6d

Browse files
Merge pull request #3685 from MicrosoftDocs/main638258007437237362sync_temp
For protected CLA branch, push strategy should use PR and merge to target branch method to work around git push error
2 parents d473009 + 405172e commit 1041e6d

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

hub/apps/windows-app-sdk/migrate-to-windows-app-sdk/what-is-supported.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,3 +40,7 @@ WinUI 3 and the Windows App SDK are new technologies and, when compared to UWP,
4040
## Performance considerations
4141

4242
Today in version 1.3 of the Windows App SDK, launch speeds, RAM usage, and installation size of WinUI 3 apps are larger/slower than seen in UWP. We're actively working to improve this.
43+
44+
## Visual Studio
45+
46+
The **Design** tab of the XAML Designer in Visual Studio (and Blend for Visual Studio) doesn't currently support WinUI 3 projects (as of version 1.3 of the Windows App SDK). For more info, see [Create a UI by using XAML Designer](/visualstudio/xaml-tools/creating-a-ui-by-using-xaml-designer-in-visual-studio).

hub/powertoys/text-extractor.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ Text Extractor can only recognize languages that have the OCR language pack inst
4545
The list can be obtained via PowerShell by running the following commands:
4646

4747
```powershell
48+
# Please use Windows PowerShell, not PowerShell 7 as these aren't .NET Core libraries
49+
4850
[Windows.Media.Ocr.OcrEngine, Windows.Foundation, ContentType = WindowsRuntime]
49-
```
5051
51-
```powershell
5252
[Windows.Media.Ocr.OcrEngine]::AvailableRecognizerLanguages
5353
```
5454

@@ -61,7 +61,6 @@ Get-WindowsCapability -Online | Where-Object { $_.Name -Like 'Language.OCR*' }
6161
```
6262

6363
An example output:
64-
6564
```powershell
6665
Name : Language.OCR~~~el-GR~0.0.1.0
6766
State : NotPresent

uwp/cpp-and-winrt-apis/get-started.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ int main()
4545
4646
Uri rssFeedUri{ L"https://blogs.windows.com/feed" };
4747
SyndicationClient syndicationClient;
48+
syndicationClient.SetRequestHeader(L"User-Agent", L"Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.2; WOW64; Trident/6.0)");
4849
SyndicationFeed syndicationFeed = syndicationClient.RetrieveFeedAsync(rssFeedUri).get();
4950
for (const SyndicationItem syndicationItem : syndicationFeed.Items())
5051
{

0 commit comments

Comments
 (0)