forked from MicrosoftEdge/WebView2Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WebView2WpfBrowser.csproj
30 lines (30 loc) · 1.11 KB
/
WebView2WpfBrowser.csproj
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
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFrameworks>netcoreapp3.1;net462</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;Release;Win7 Release;Win7 Debug</Configurations>
</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>
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.1018-prerelease" />
</ItemGroup>
</Project>