Skip to content

Commit 7f5c899

Browse files
Package upgrade
1 parent 9090c54 commit 7f5c899

File tree

8 files changed

+17
-202
lines changed

8 files changed

+17
-202
lines changed

VBAudioRouter.Capture/VBAudioRouter.Capture.csproj

Lines changed: 0 additions & 65 deletions
Original file line numberDiff line numberDiff line change
@@ -20,27 +20,6 @@
2020
<FileAlignment>512</FileAlignment>
2121
<ProjectTypeGuids>{A5A43C5B-DE2A-4C0C-9213-0A381AF9435A};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
2222
</PropertyGroup>
23-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
24-
<PlatformTarget>AnyCPU</PlatformTarget>
25-
<DebugSymbols>true</DebugSymbols>
26-
<DebugType>full</DebugType>
27-
<Optimize>false</Optimize>
28-
<OutputPath>bin\Debug\</OutputPath>
29-
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
30-
<ErrorReport>prompt</ErrorReport>
31-
<WarningLevel>4</WarningLevel>
32-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
33-
</PropertyGroup>
34-
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
35-
<PlatformTarget>AnyCPU</PlatformTarget>
36-
<DebugType>pdbonly</DebugType>
37-
<Optimize>true</Optimize>
38-
<OutputPath>bin\Release\</OutputPath>
39-
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
40-
<ErrorReport>prompt</ErrorReport>
41-
<WarningLevel>4</WarningLevel>
42-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
43-
</PropertyGroup>
4423
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x86'">
4524
<PlatformTarget>x86</PlatformTarget>
4625
<DebugSymbols>true</DebugSymbols>
@@ -63,50 +42,6 @@
6342
<ErrorReport>prompt</ErrorReport>
6443
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
6544
</PropertyGroup>
66-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
67-
<PlatformTarget>ARM</PlatformTarget>
68-
<DebugSymbols>true</DebugSymbols>
69-
<OutputPath>bin\ARM\Debug\</OutputPath>
70-
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
71-
<NoWarn>;2008</NoWarn>
72-
<DebugType>full</DebugType>
73-
<UseVSHostingProcess>false</UseVSHostingProcess>
74-
<ErrorReport>prompt</ErrorReport>
75-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
76-
</PropertyGroup>
77-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
78-
<PlatformTarget>ARM</PlatformTarget>
79-
<OutputPath>bin\ARM\Release\</OutputPath>
80-
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
81-
<Optimize>true</Optimize>
82-
<NoWarn>;2008</NoWarn>
83-
<DebugType>pdbonly</DebugType>
84-
<UseVSHostingProcess>false</UseVSHostingProcess>
85-
<ErrorReport>prompt</ErrorReport>
86-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
87-
</PropertyGroup>
88-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM64'">
89-
<PlatformTarget>ARM64</PlatformTarget>
90-
<DebugSymbols>true</DebugSymbols>
91-
<OutputPath>bin\ARM64\Debug\</OutputPath>
92-
<DefineConstants>DEBUG;TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
93-
<NoWarn>;2008</NoWarn>
94-
<DebugType>full</DebugType>
95-
<UseVSHostingProcess>false</UseVSHostingProcess>
96-
<ErrorReport>prompt</ErrorReport>
97-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
98-
</PropertyGroup>
99-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM64'">
100-
<PlatformTarget>ARM64</PlatformTarget>
101-
<OutputPath>bin\ARM64\Release\</OutputPath>
102-
<DefineConstants>TRACE;NETFX_CORE;WINDOWS_UWP</DefineConstants>
103-
<Optimize>true</Optimize>
104-
<NoWarn>;2008</NoWarn>
105-
<DebugType>pdbonly</DebugType>
106-
<UseVSHostingProcess>false</UseVSHostingProcess>
107-
<ErrorReport>prompt</ErrorReport>
108-
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
109-
</PropertyGroup>
11045
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
11146
<PlatformTarget>x64</PlatformTarget>
11247
<DebugSymbols>true</DebugSymbols>

VBAudioRouter.Host/VBAudioRouter.Host.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<AssetTargetFallback>uap10.0.19041</AssetTargetFallback>
77
<TargetPlatformVersion>10.0.19041</TargetPlatformVersion>
88
<LangVersion>9</LangVersion>
9-
<Platforms>AnyCPU;x64;x86</Platforms>
9+
<Platforms>x64;x86</Platforms>
1010
<ApplicationManifest>app.manifest</ApplicationManifest>
1111
<!--<SelfContained>true</SelfContained>
1212
<RuntimeIdentifier>win-x64</RuntimeIdentifier>-->

VBAudioRouter.UWP/Controls/Nodes/FileInputNodeControl.xaml.vb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ Imports Windows.Media.Audio
44
Imports Windows.Media.Core
55
Imports Windows.Storage.Pickers
66
Imports WinUI.Interop
7+
Imports WinUI.Interop.CoreWindow
78

89
Namespace Controls.Nodes
910

@@ -50,8 +51,8 @@ Namespace Controls.Nodes
5051

5152
Private Async Sub Button_Click(sender As Object, e As RoutedEventArgs)
5253
Dim filePicker As New FileOpenPicker()
53-
If Not InteropHelper.IsUWP() Then
54-
DirectCast(filePicker, NativeWindow.IInitializeWithWindow).Initialize(Process.GetCurrentProcess().MainWindowHandle)
54+
If Not RuntimeInformation.IsUWP Then
55+
DirectCast(filePicker, IInitializeWithWindow).Initialize(Process.GetCurrentProcess().MainWindowHandle)
5556
End If
5657
#Region "Picker Init"
5758
filePicker.SuggestedStartLocation = PickerLocationId.MusicLibrary

VBAudioRouter.UWP/GraphViewPage.xaml.vb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ Public NotInheritable Class GraphViewPage
5757
Public ReadOnly Property BackgroundAudioSession As ExtendedExecutionForegroundSession
5858

5959
Private Async Function EnableBackgroundAudioAsync() As Task
60-
If Not WinUI.Interop.InteropHelper.IsUWP() Then Exit Function
60+
If Not WinUI.Interop.RuntimeInformation.IsUWP Then Exit Function
6161
_BackgroundAudioSession = New ExtendedExecutionForegroundSession()
6262
BackgroundAudioSession.Reason = ExtendedExecutionForegroundReason.BackgroundAudio
6363
BackgroundAudioSession.Description = "Play Background audio"

VBAudioRouter.UWP/Program.vb

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Partial Public Class Program
44

55
Public Shared Sub WinMain(args As String())
66
XamlApplicationWrapper.Run(Of App, WelcomePage)(Sub()
7+
Dim subclass = XamlWindowSubclass.ForCurrentWindow()
8+
subclass.UseDarkMode = True
79
AddHandler Window.Current.GetSubclass().CloseRequested, AddressOf Program_CloseRequested
810
End Sub)
911
End Sub

VBAudioRouter.UWP/SpeakerControlPage.xaml.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Imports NAudio.CoreAudioApi.Interfaces
33
Imports VBAudioRouter.Interop
44
Imports WinUI.Interop
5-
Imports WinUI.Interop.AppContainer
5+
Imports WinUI.Interop.AppContainer.Audio
66

77
Public NotInheritable Class SpeakerControlPage
88
Inherits Page
@@ -35,7 +35,7 @@ Public NotInheritable Class SpeakerControlPage
3535
timer.Enabled = True
3636

3737
' UWP apps don't have permission to do the following stuff 😥
38-
If InteropHelper.IsUWP() Then Exit Sub
38+
If WinUI.Interop.RuntimeInformation.IsUWP Then Exit Sub
3939

4040
_AudioSessionManager = DirectCast(Await AudioInterfaceActivator.ActivateAudioInterfaceAsync(Of IAudioSessionManager)(deviceId), IAudioSessionManager2)
4141
AudioSessionManager.RegisterSessionNotification(Me)

VBAudioRouter.UWP/VBAudioRouter.UWP.vbproj

Lines changed: 4 additions & 77 deletions
Original file line numberDiff line numberDiff line change
@@ -58,67 +58,6 @@
5858
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
5959
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
6060
</PropertyGroup>
61-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM'">
62-
<DebugSymbols>true</DebugSymbols>
63-
<DefineDebug>true</DefineDebug>
64-
<DefineTrace>true</DefineTrace>
65-
<OutputPath>bin\ARM\Debug\</OutputPath>
66-
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
67-
<DebugType>full</DebugType>
68-
<PlatformTarget>ARM</PlatformTarget>
69-
<UseVSHostingProcess>false</UseVSHostingProcess>
70-
<Prefer32Bit>true</Prefer32Bit>
71-
<DocumentationFile>VBAudioRouter.xml</DocumentationFile>
72-
<NoWarn>
73-
</NoWarn>
74-
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
75-
</PropertyGroup>
76-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM'">
77-
<DefineTrace>true</DefineTrace>
78-
<OutputPath>bin\ARM\Release\</OutputPath>
79-
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
80-
<Optimize>true</Optimize>
81-
<DebugType>pdbonly</DebugType>
82-
<PlatformTarget>ARM</PlatformTarget>
83-
<UseVSHostingProcess>false</UseVSHostingProcess>
84-
<Prefer32Bit>true</Prefer32Bit>
85-
<DocumentationFile>VBAudioRouter.xml</DocumentationFile>
86-
<NoWarn>
87-
</NoWarn>
88-
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
89-
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
90-
</PropertyGroup>
91-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|ARM64'">
92-
<DebugSymbols>true</DebugSymbols>
93-
<DefineDebug>true</DefineDebug>
94-
<DefineTrace>true</DefineTrace>
95-
<OutputPath>bin\ARM64\Debug\</OutputPath>
96-
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
97-
<DebugType>full</DebugType>
98-
<PlatformTarget>ARM64</PlatformTarget>
99-
<UseVSHostingProcess>false</UseVSHostingProcess>
100-
<Prefer32Bit>true</Prefer32Bit>
101-
<DocumentationFile>VBAudioRouter.xml</DocumentationFile>
102-
<NoWarn>
103-
</NoWarn>
104-
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
105-
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
106-
</PropertyGroup>
107-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|ARM64'">
108-
<DefineTrace>true</DefineTrace>
109-
<OutputPath>bin\ARM64\Release\</OutputPath>
110-
<DefineConstants>NETFX_CORE,WINDOWS_UWP</DefineConstants>
111-
<Optimize>true</Optimize>
112-
<DebugType>pdbonly</DebugType>
113-
<PlatformTarget>ARM64</PlatformTarget>
114-
<UseVSHostingProcess>false</UseVSHostingProcess>
115-
<Prefer32Bit>true</Prefer32Bit>
116-
<DocumentationFile>VBAudioRouter.xml</DocumentationFile>
117-
<NoWarn>
118-
</NoWarn>
119-
<UseDotNetNativeToolchain>true</UseDotNetNativeToolchain>
120-
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
121-
</PropertyGroup>
12261
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
12362
<DebugSymbols>true</DebugSymbols>
12463
<DefineDebug>true</DefineDebug>
@@ -446,22 +385,22 @@
446385
<Version>2.8.0-prerelease.220413001</Version>
447386
</PackageReference>
448387
<PackageReference Include="NAudio.Core">
449-
<Version>2.0.0</Version>
388+
<Version>2.1.0</Version>
450389
</PackageReference>
451390
<PackageReference Include="NAudio.Wasapi">
452-
<Version>2.0.0</Version>
391+
<Version>2.1.0</Version>
453392
</PackageReference>
454393
<PackageReference Include="Newtonsoft.Json">
455394
<Version>13.0.1</Version>
456395
</PackageReference>
457396
<PackageReference Include="ShortDev.Uwp.FullTrust">
458-
<Version>0.1.0</Version>
397+
<Version>0.1.3</Version>
459398
</PackageReference>
460399
<PackageReference Include="UWPAudioVisualizer">
461400
<Version>1.0.38</Version>
462401
</PackageReference>
463402
<PackageReference Include="WinUI.Interop">
464-
<Version>0.1.2</Version>
403+
<Version>0.2.4</Version>
465404
</PackageReference>
466405
</ItemGroup>
467406
<ItemGroup>
@@ -485,18 +424,6 @@
485424
<PropertyGroup>
486425
<OptionInfer>On</OptionInfer>
487426
</PropertyGroup>
488-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|Win32'">
489-
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
490-
</PropertyGroup>
491-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
492-
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
493-
</PropertyGroup>
494-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|Win32'">
495-
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
496-
</PropertyGroup>
497-
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|AnyCPU'">
498-
<WarningsAsErrors>41999,42016,42017,42018,42019,42020,42021,42022,42032,42036</WarningsAsErrors>
499-
</PropertyGroup>
500427
<Import Project="$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.VisualBasic.targets" />
501428
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
502429
Other similar extension points exist, see Microsoft.Common.targets.

VBAudioRouter.sln

Lines changed: 4 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.31424.327
3+
# Visual Studio Version 17
4+
VisualStudioVersion = 17.2.32516.85
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "VBAudioRouter.UWP", "VBAudioRouter.UWP\VBAudioRouter.UWP.vbproj", "{65472FE0-CAA5-4078-9155-3373AF4B692F}"
77
EndProject
@@ -11,84 +11,34 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "VBAudioRouter.Capture", "VB
1111
EndProject
1212
Global
1313
GlobalSection(SolutionConfigurationPlatforms) = preSolution
14-
Debug|Any CPU = Debug|Any CPU
15-
Debug|ARM = Debug|ARM
16-
Debug|ARM64 = Debug|ARM64
1714
Debug|x64 = Debug|x64
1815
Debug|x86 = Debug|x86
19-
Release|Any CPU = Release|Any CPU
20-
Release|ARM = Release|ARM
21-
Release|ARM64 = Release|ARM64
2216
Release|x64 = Release|x64
2317
Release|x86 = Release|x86
2418
EndGlobalSection
2519
GlobalSection(ProjectConfigurationPlatforms) = postSolution
26-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
27-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Debug|Any CPU.Build.0 = Debug|Any CPU
28-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
29-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Debug|ARM.ActiveCfg = Debug|ARM
30-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Debug|ARM.Build.0 = Debug|ARM
31-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Debug|ARM.Deploy.0 = Debug|ARM
32-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Debug|ARM64.ActiveCfg = Debug|ARM64
33-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Debug|ARM64.Build.0 = Debug|ARM64
34-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Debug|ARM64.Deploy.0 = Debug|ARM64
3520
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Debug|x64.ActiveCfg = Debug|x64
3621
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Debug|x64.Build.0 = Debug|x64
3722
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Debug|x64.Deploy.0 = Debug|x64
3823
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Debug|x86.ActiveCfg = Debug|x86
3924
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Debug|x86.Build.0 = Debug|x86
4025
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Debug|x86.Deploy.0 = Debug|x86
41-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Release|Any CPU.ActiveCfg = Release|Any CPU
42-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Release|Any CPU.Build.0 = Release|Any CPU
43-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Release|Any CPU.Deploy.0 = Release|Any CPU
44-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Release|ARM.ActiveCfg = Release|ARM
45-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Release|ARM.Build.0 = Release|ARM
46-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Release|ARM.Deploy.0 = Release|ARM
47-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Release|ARM64.ActiveCfg = Release|ARM64
48-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Release|ARM64.Build.0 = Release|ARM64
49-
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Release|ARM64.Deploy.0 = Release|ARM64
5026
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Release|x64.ActiveCfg = Release|x64
5127
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Release|x64.Build.0 = Release|x64
5228
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Release|x64.Deploy.0 = Release|x64
5329
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Release|x86.ActiveCfg = Release|x86
5430
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Release|x86.Build.0 = Release|x86
5531
{65472FE0-CAA5-4078-9155-3373AF4B692F}.Release|x86.Deploy.0 = Release|x86
56-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
57-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Debug|Any CPU.Build.0 = Debug|Any CPU
58-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Debug|ARM.ActiveCfg = Debug|Any CPU
59-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Debug|ARM.Build.0 = Debug|Any CPU
60-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Debug|ARM64.ActiveCfg = Debug|Any CPU
61-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Debug|ARM64.Build.0 = Debug|Any CPU
6232
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Debug|x64.ActiveCfg = Debug|x64
6333
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Debug|x64.Build.0 = Debug|x64
6434
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Debug|x86.ActiveCfg = Debug|x86
6535
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Debug|x86.Build.0 = Debug|x86
66-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Release|Any CPU.ActiveCfg = Release|Any CPU
67-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Release|Any CPU.Build.0 = Release|Any CPU
68-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Release|ARM.ActiveCfg = Release|Any CPU
69-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Release|ARM.Build.0 = Release|Any CPU
70-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Release|ARM64.ActiveCfg = Release|Any CPU
71-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Release|ARM64.Build.0 = Release|Any CPU
72-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Release|x64.ActiveCfg = Release|Any CPU
73-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Release|x64.Build.0 = Release|Any CPU
74-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Release|x86.ActiveCfg = Release|Any CPU
75-
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Release|x86.Build.0 = Release|Any CPU
76-
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
77-
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Debug|Any CPU.Build.0 = Debug|Any CPU
78-
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Debug|ARM.ActiveCfg = Debug|ARM
79-
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Debug|ARM.Build.0 = Debug|ARM
80-
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Debug|ARM64.ActiveCfg = Debug|ARM64
81-
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Debug|ARM64.Build.0 = Debug|ARM64
36+
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Release|x64.ActiveCfg = Release|x64
37+
{AF8198C2-56B9-4F92-9931-0C4837936F95}.Release|x86.ActiveCfg = Release|x86
8238
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Debug|x64.ActiveCfg = Debug|x64
8339
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Debug|x64.Build.0 = Debug|x64
8440
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Debug|x86.ActiveCfg = Debug|x86
8541
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Debug|x86.Build.0 = Debug|x86
86-
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Release|Any CPU.ActiveCfg = Release|Any CPU
87-
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Release|Any CPU.Build.0 = Release|Any CPU
88-
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Release|ARM.ActiveCfg = Release|ARM
89-
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Release|ARM.Build.0 = Release|ARM
90-
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Release|ARM64.ActiveCfg = Release|ARM64
91-
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Release|ARM64.Build.0 = Release|ARM64
9242
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Release|x64.ActiveCfg = Release|x64
9343
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Release|x64.Build.0 = Release|x64
9444
{59159EA3-1470-4CA1-A5AB-C4A21A7C71A2}.Release|x86.ActiveCfg = Release|x86

0 commit comments

Comments
 (0)