-
Notifications
You must be signed in to change notification settings - Fork 61
/
Copy pathDirectory.Build.props
31 lines (27 loc) · 1.16 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
<!--
SPDX-FileCopyrightText: 2024-2025 tdsharp contributors <https://github.com/egramtel/tdsharp>
SPDX-License-Identifier: MIT
-->
<Project>
<PropertyGroup Label="Packaging">
<Version>1.8.45</Version>
</PropertyGroup>
<PropertyGroup>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<!-- REUSE-IgnoreStart -->
<Copyright>2025 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>