forked from OutSystems/CefGlue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Directory.Build.props
48 lines (43 loc) · 2.23 KB
/
Directory.Build.props
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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<PropertyGroup>
<DotnetVersion>net6.0</DotnetVersion>
<LangVersion>latest</LangVersion>
<CefRedistVersion>106.0.26</CefRedistVersion>
<CefRedistOSXVersion>106.0.26-patch1</CefRedistOSXVersion>
<Platforms>x64;ARM64</Platforms>
<Configurations>Debug;DebugWindowlessRender;Release;ReleaseWPFAvalonia</Configurations>
</PropertyGroup>
<PropertyGroup>
<PackageOutputPath>$(MSBuildProjectDirectory)\..\Nuget\output</PackageOutputPath>
<Version>106.5249.21</Version>
<Authors>XiliumHQ,OutSystems</Authors>
<Product>CefGlue</Product>
<AssemblyTitle>CefGlue</AssemblyTitle>
<Description>CefGlue is a .NET binding for The Chromium Embedded Framework (CEF) by Marshall A. Greenblatt.</Description>
<Copyright>Copyright © XiliumHQ 2021. Copyright © OutSystems 2021.</Copyright>
<PackageDescription>ChromiumEmbedded. $(Description)</PackageDescription>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageTags>cef, chromium, chrome browser, cefglue</PackageTags>
<!-- <PackageIcon></PackageIcon> -->
<IncludeSymbols>false</IncludeSymbols>
<IncludeSource>false</IncludeSource>
<RepositoryUrl>https://github.com/OutSystems/CefGlue</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<NoWarn>$(NoWarn);NU5100;NU5118;CS1591</NoWarn>
<AddSyntheticProjectReferencesForSolutionDependencies>false</AddSyntheticProjectReferencesForSolutionDependencies>
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)' == '' or '$(Platform)' == 'x64'">
<ArchitectureConfig>x64</ArchitectureConfig>
<PackageSuffix />
</PropertyGroup>
<PropertyGroup Condition="'$(Platform)' == 'ARM64'">
<ArchitectureConfig>arm64</ArchitectureConfig>
<PackageSuffix>.ARM64</PackageSuffix>
</PropertyGroup>
<!-- Generate documentation in Release builds. -->
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
</Project>