-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathDirectory.Build.props.in
36 lines (34 loc) · 1.54 KB
/
Directory.Build.props.in
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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<!-- These settings are applied to all projects recursive from here (unless overridden).-->
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Nuget Properties -->
<MinClientVersion>4.1.0</MinClientVersion>
<NeutralLanguage>en-US</NeutralLanguage>
<Authors>Mizux</Authors>
<Company>Google LLC</Company>
<Copyright>Copyright 2020 Google LLC</Copyright>
<!-- Pack Option -->
<PackageTags>native;sample</PackageTags>
<PackageIcon>content/logo.png</PackageIcon>
<PackageProjectUrl>https://github.com/mizux/dotnet-native</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageOutputPath>@DOTNET_PACKAGES_DIR@</PackageOutputPath>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/mizux/dotnet-native</RepositoryUrl>
<!--Disable CS1591 "Missing XML comment for publicly visible type or member" (Swig doesn't generate documentation)-->
<NoWarn>1591</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Include="@DOTNET_LOGO_DIR@/logo.png">
<Pack>True</Pack>
<PackagePath>content</PackagePath>
</None>
</ItemGroup>
<PropertyGroup Label="BasePath">
<SolutionDir Condition="'$(SolutionDir)'==''">$(MSBuildThisFileDirectory)</SolutionDir>
</PropertyGroup>
</Project>