-
Notifications
You must be signed in to change notification settings - Fork 517
Expand file tree
/
Copy pathWebView2WpfBrowser.csproj
More file actions
67 lines (67 loc) · 2.5 KB
/
WebView2WpfBrowser.csproj
File metadata and controls
67 lines (67 loc) · 2.5 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>netcoreapp3.0;net462;net6.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<Authors>Hybrid Application Team</Authors>
<Company>Microsoft</Company>
<Product>WebView2 WPF Sample Browser App</Product>
<Copyright>Copyright ©2020</Copyright>
<NoWin32Manifest>true</NoWin32Manifest>
<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>
<Content Include="assets\EdgeWebView2-80.jpg">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="assets\AppStartPageBackground.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="assets\AppStartPage.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="assets\AppStartPage.js">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="assets\hostObject.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="assets\sharedBuffer.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="assets\webMessages.html">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.3477-prerelease" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
</ItemGroup>
</Project>