-
Notifications
You must be signed in to change notification settings - Fork 72
Expand file tree
/
Copy pathWebViewControl.csproj
More file actions
33 lines (28 loc) · 1.12 KB
/
WebViewControl.csproj
File metadata and controls
33 lines (28 loc) · 1.12 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>$(TargetDotnetVersion)-windows</TargetFramework>
<AssemblyTitle>WebViewControl WPF</AssemblyTitle>
<Description>WebViewControl for WPF powered by CefGlue</Description>
<Configuration></Configuration>
<Company></Company>
<Product>WebViewControl</Product>
<Copyright>Copyright © 2023</Copyright>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<PackageId>WebViewControl-WPF$(PackageSuffix)</PackageId>
<Configurations>Debug;Release;ReleaseAvalonia;ReleaseWPF;ReleaseAvaloniaRemoteDebugSupport</Configurations>
<UseWPF>true</UseWPF>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)' == 'ReleaseWPF'">
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="WebViewControl.nuspec">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<PackageReference PrivateAssets="None" Include="CefGlue.Wpf$(CefGluePackageSuffix)" />
</ItemGroup>
</Project>