Skip to content

Commit bc72862

Browse files
committed
Update samples for ARM64: build.cmd -TargetFramework net6.0-windows -Platform ARM64
1 parent 4eebf35 commit bc72862

File tree

256 files changed

+1638
-767
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

256 files changed

+1638
-767
lines changed

Accessibility/FetchTimer/FetchTimer.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<UseWindowsForms>true</UseWindowsForms>
66
<EnableDefaultItems>false</EnableDefaultItems>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Accessibility/FindText/FindText/FindText.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Accessibility/FindText/FindTextClient/FindTextClient.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Accessibility/FocusTracker/FocusTracker.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -18,7 +18,7 @@
1818
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1919
<PlatformTarget>AnyCPU</PlatformTarget>
2020
<DebugSymbols>true</DebugSymbols>
21-
<DebugType>full</DebugType>
21+
<DebugType>portable</DebugType>
2222
<Optimize>false</Optimize>
2323
<OutputPath>bin\Debug\</OutputPath>
2424
<DefineConstants>DEBUG;TRACE</DefineConstants>

Accessibility/Highlighter/Highlighter.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1818
<PlatformTarget>AnyCPU</PlatformTarget>
1919
<DebugSymbols>true</DebugSymbols>
20-
<DebugType>full</DebugType>
20+
<DebugType>portable</DebugType>
2121
<Optimize>false</Optimize>
2222
<OutputPath>bin\Debug\</OutputPath>
2323
<DefineConstants>DEBUG;TRACE</DefineConstants>

Accessibility/InsertText/InsertTextClient/InsertTextClient.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Accessibility/InsertText/InsertTextTarget/InsertTextTarget.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<UseWindowsForms>true</UseWindowsForms>
66
<EnableDefaultItems>false</EnableDefaultItems>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Accessibility/InvokePattern/InvokePatternApp/InvokePatternApp.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Accessibility/InvokePattern/Target/Target.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Accessibility/SelectionPattern/SelectionPatternSample/SelectionPatternSample.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Accessibility/SelectionPattern/SelectionTarget/SelectionTarget.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<UseWindowsForms>true</UseWindowsForms>
66
<EnableDefaultItems>false</EnableDefaultItems>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Accessibility/WindowMove/WindowMove.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Animation/AnimationExamples/AnimationExamples.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Animation/AnimationTiming/AnimationTiming.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Animation/CustomAnimation/CustomAnimation.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Animation/KeyFrameAnimation/KeyFrameAnimation.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Animation/KeySplineAnimations/KeySplineAnimations.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Animation/LocalAnimations/LocalAnimations.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Animation/OpacityAnimation/OpacityAnimation.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Animation/PathAnimations/PathAnimations.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Animation/Per-FrameAnimation/Per-FrameAnimation.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Animation/PropertyAnimation/PropertyAnimation.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Animation/TargetValues/TargetValues.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

Application Management/ApplicationShutdown/ApplicationShutdown.csproj

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
1+
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>netcoreapp3.1</TargetFramework>
3+
<TargetFramework>net6.0-windows</TargetFramework>
44
<UseWpf>true</UseWpf>
55
<EnableDefaultItems>false</EnableDefaultItems>
66
</PropertyGroup>
@@ -19,7 +19,7 @@
1919
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
2020
<PlatformTarget>AnyCPU</PlatformTarget>
2121
<DebugSymbols>true</DebugSymbols>
22-
<DebugType>full</DebugType>
22+
<DebugType>portable</DebugType>
2323
<Optimize>false</Optimize>
2424
<OutputPath>bin\Debug\</OutputPath>
2525
<DefineConstants>DEBUG;TRACE</DefineConstants>

0 commit comments

Comments
 (0)