-
Notifications
You must be signed in to change notification settings - Fork 67
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
33 lines (29 loc) · 1.22 KB
/
Directory.Build.props
File metadata and controls
33 lines (29 loc) · 1.22 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
<!--
SPDX-FileCopyrightText: 2024-2026 tdsharp contributors <https://github.com/egramtel/tdsharp>
SPDX-License-Identifier: MIT
-->
<Project>
<PropertyGroup Label="Packaging">
<Version>1.8.63</Version>
</PropertyGroup>
<PropertyGroup>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- REUSE-IgnoreStart -->
<Copyright>
2018 Sergey Khabibullin;
2018-2026 tdsharp contributors <https://github.com/egramtel/tdsharp></Copyright>
<!-- REUSE-IgnoreEnd -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)\README.md" Pack="true" PackagePath="\"/>
<None Include="$(MSBuildThisFileDirectory)\CHANGELOG.md" Pack="true" PackagePath="\"/>
<None Include="$(MSBuildThisFileDirectory)\LICENSES\*" Pack="true" PackagePath="\"/>
</ItemGroup>
<PropertyGroup Condition="$(CI) != ''">
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
</PropertyGroup>
</Project>