-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
42 lines (36 loc) · 1.69 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
<Project>
<PropertyGroup>
<EnableDefaultItems>false</EnableDefaultItems>
<!-- For CefGlue nullable support will not be enabled for a while. This option for vNext. -->
<Nullable>enable</Nullable>
<DisableTransitiveProjectReferences>true</DisableTransitiveProjectReferences>
<IsPackable>false</IsPackable>
<PackageOutputPath>$(MSBuildThisFileDirectory).\artifacts\</PackageOutputPath>
</PropertyGroup>
<PropertyGroup>
<Authors>XiliumHQ</Authors>
<Company>XiliumHQ</Company>
<Product>Xilium CefGlue</Product>
<AssemblyTitle>Xilium CefGlue</AssemblyTitle>
<Description>Xilium.CefGlue is a .NET/Mono binding for The Chromium Embedded Framework (CEF) by Marshall A. Greenblatt.</Description>
<Copyright>Copyright © XiliumHQ 2021</Copyright>
<PackageDescription>XiliumHQ: ChromiumEmbedded. $(Description)</PackageDescription>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- <PackageIcon></PackageIcon> -->
<IncludeSymbols>false</IncludeSymbols>
<IncludeSource>false</IncludeSource>
<RepositoryUrl>https://gitlab.com/xiliumhq/chromiumembedded/cefglue</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<!-- Don't assign versions by MinVer in Debug builds. -->
<!--
<PropertyGroup Condition="'$(Configuration)' == 'Debug'">
<MinVerSkip Condition="'$(MinVerSkip)' == ''">true</MinVerSkip>
</PropertyGroup>
-->
<!-- Generate documentation in Release builds. -->
<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
</Project>