Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Stable and Experimental for WinForms app #202

Merged
merged 1 commit into from
Jul 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,13 @@
<Authors>Hybrid Application Team</Authors>
<Copyright>Copyright ©2020</Copyright>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Configurations>Debug;Release</Configurations>
<Configurations>Debug Stable APIs;Release Stable APIs;Debug Experimental APIs;Release Experimental APIs</Configurations>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Debug Experimental APIs'">
<DefineConstants>USE_WEBVIEW2_EXPERIMENTAL</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)'=='Release Experimental APIs'">
<DefineConstants>USE_WEBVIEW2_EXPERIMENTAL</DefineConstants>
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)'=='x64'">
<PlatformTarget>x64</PlatformTarget>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,25 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30011.22
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebView2WindowsFormsBrowser", "WebView2WindowsFormsBrowser.csproj", "{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Debug|Any CPU.Build.0 = Debug|Any CPU
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Release|Any CPU.ActiveCfg = Release|Any CPU
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {0260E91B-A0AA-47C4-BAB0-B51495EF6029}
EndGlobalSection
EndGlobal

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30011.22
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebView2WindowsFormsBrowser", "WebView2WindowsFormsBrowser.csproj", "{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug Experimental APIs|Any CPU = Debug Experimental APIs|Any CPU
Debug Stable APIs|Any CPU = Debug Stable APIs|Any CPU
Release Experimental APIs|Any CPU = Release Experimental APIs|Any CPU
Release Stable APIs|Any CPU = Release Stable APIs|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Debug Experimental APIs|Any CPU.ActiveCfg = Debug Experimental APIs|Any CPU
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Debug Experimental APIs|Any CPU.Build.0 = Debug Experimental APIs|Any CPU
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Debug Stable APIs|Any CPU.ActiveCfg = Debug Stable APIs|Any CPU
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Debug Stable APIs|Any CPU.Build.0 = Debug Stable APIs|Any CPU
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Release Experimental APIs|Any CPU.ActiveCfg = Release Experimental APIs|Any CPU
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Release Experimental APIs|Any CPU.Build = Release Experimental APIs|Any CPU
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Release Stable APIs|Any CPU.ActiveCfg = Release Stable APIs|Any CPU
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Release Stable APIs|Any CPU.Build.0 = Release Stable APIs|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {0260E91B-A0AA-47C4-BAB0-B51495EF6029}
EndGlobalSection
EndGlobal
Loading