Skip to content

Commit a9eeffb

Browse files
oggy22Ognjen Sobajic
andauthored
Stable and Experimentla for WinForms app (#202)
Co-authored-by: Ognjen Sobajic <[email protected]>
1 parent 1b85d07 commit a9eeffb

File tree

2 files changed

+38
-26
lines changed

2 files changed

+38
-26
lines changed

SampleApps/WebView2WindowsFormsBrowser/WebView2WindowsFormsBrowser.csproj

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,13 @@
77
<Authors>Hybrid Application Team</Authors>
88
<Copyright>Copyright ©2020</Copyright>
99
<ApplicationManifest>app.manifest</ApplicationManifest>
10-
<Configurations>Debug;Release</Configurations>
10+
<Configurations>Debug Stable APIs;Release Stable APIs;Debug Experimental APIs;Release Experimental APIs</Configurations>
11+
</PropertyGroup>
12+
<PropertyGroup Condition="'$(Configuration)'=='Debug Experimental APIs'">
13+
<DefineConstants>USE_WEBVIEW2_EXPERIMENTAL</DefineConstants>
14+
</PropertyGroup>
15+
<PropertyGroup Condition="'$(Configuration)'=='Release Experimental APIs'">
16+
<DefineConstants>USE_WEBVIEW2_EXPERIMENTAL</DefineConstants>
1117
</PropertyGroup>
1218
<PropertyGroup Condition="'$(Platform)'=='x64'">
1319
<PlatformTarget>x64</PlatformTarget>
Lines changed: 31 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,31 @@
1-
2-
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio Version 16
4-
VisualStudioVersion = 16.0.30011.22
5-
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebView2WindowsFormsBrowser", "WebView2WindowsFormsBrowser.csproj", "{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}"
7-
EndProject
8-
Global
9-
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10-
Debug|Any CPU = Debug|Any CPU
11-
Release|Any CPU = Release|Any CPU
12-
EndGlobalSection
13-
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14-
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15-
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Debug|Any CPU.Build.0 = Debug|Any CPU
16-
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Release|Any CPU.ActiveCfg = Release|Any CPU
17-
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Release|Any CPU.Build.0 = Release|Any CPU
18-
EndGlobalSection
19-
GlobalSection(SolutionProperties) = preSolution
20-
HideSolutionNode = FALSE
21-
EndGlobalSection
22-
GlobalSection(ExtensibilityGlobals) = postSolution
23-
SolutionGuid = {0260E91B-A0AA-47C4-BAB0-B51495EF6029}
24-
EndGlobalSection
25-
EndGlobal
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.30011.22
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "WebView2WindowsFormsBrowser", "WebView2WindowsFormsBrowser.csproj", "{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug Experimental APIs|Any CPU = Debug Experimental APIs|Any CPU
11+
Debug Stable APIs|Any CPU = Debug Stable APIs|Any CPU
12+
Release Experimental APIs|Any CPU = Release Experimental APIs|Any CPU
13+
Release Stable APIs|Any CPU = Release Stable APIs|Any CPU
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Debug Experimental APIs|Any CPU.ActiveCfg = Debug Experimental APIs|Any CPU
17+
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Debug Experimental APIs|Any CPU.Build.0 = Debug Experimental APIs|Any CPU
18+
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Debug Stable APIs|Any CPU.ActiveCfg = Debug Stable APIs|Any CPU
19+
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Debug Stable APIs|Any CPU.Build.0 = Debug Stable APIs|Any CPU
20+
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Release Experimental APIs|Any CPU.ActiveCfg = Release Experimental APIs|Any CPU
21+
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Release Experimental APIs|Any CPU.Build = Release Experimental APIs|Any CPU
22+
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Release Stable APIs|Any CPU.ActiveCfg = Release Stable APIs|Any CPU
23+
{86BC1812-7A58-43C1-B0BB-D8EC7AC1A2CF}.Release Stable APIs|Any CPU.Build.0 = Release Stable APIs|Any CPU
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {0260E91B-A0AA-47C4-BAB0-B51495EF6029}
30+
EndGlobalSection
31+
EndGlobal

0 commit comments

Comments
 (0)