-
Notifications
You must be signed in to change notification settings - Fork 517
Expand file tree
/
Copy pathWebView2WindowsFormsBrowser.csproj
More file actions
53 lines (53 loc) · 2.13 KB
/
WebView2WindowsFormsBrowser.csproj
File metadata and controls
53 lines (53 loc) · 2.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>netcoreapp3.0;net462;net6.0-windows</TargetFrameworks>
<UseWindowsForms>true</UseWindowsForms>
<Company>Microsoft</Company>
<Authors>Hybrid Application Team</Authors>
<Copyright>Copyright ©2020</Copyright>
<ApplicationManifest>app.manifest</ApplicationManifest>
<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>
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)'=='x86'">
<PlatformTarget>x86</PlatformTarget>
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)'=='AnyCPU'">
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.3530-prerelease" />
</ItemGroup>
<ItemGroup>
<Folder Include="assets\" />
</ItemGroup>
<ItemGroup>
<None Update="assets\EdgeWebView2-80.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="assets\AppStartPage.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="assets\AppStartPage.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="assets\AppStartPageBackground.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="assets\hostObject.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="assets\webMessages.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>