-
Notifications
You must be signed in to change notification settings - Fork 88
/
Package.props
38 lines (33 loc) · 1.17 KB
/
Package.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
<?xml version="1.0" encoding="utf-8"?>
<Project>
<!-- NuGet -->
<PropertyGroup>
<PackageId>RichardSzalay.MockHttp</PackageId>
<Version>7.0.0</Version>
<Authors>Richard Szalay</Authors>
<Company></Company>
<Description>Testing layer for Microsoft's HttpClient library</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<Copyright>Copyright 2023 Richard Szalay</Copyright>
</PropertyGroup>
<!-- Assembly Versions -->
<PropertyGroup>
<VersionPrefix>$(Version)</VersionPrefix>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
</PropertyGroup>
<!-- SourceLink -->
<PropertyGroup>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<DebugType>embedded</DebugType>
</PropertyGroup>
<Target Name="PreparePackageReleaseNotesFromFile" BeforeTargets="GenerateNuspec">
<ReadLinesFromFile File="../CHANGELOG" >
<Output TaskParameter="Lines" ItemName="ReleaseNoteLines"/>
</ReadLinesFromFile>
<PropertyGroup>
<PackageReleaseNotes>@(ReleaseNoteLines, '%0a')</PackageReleaseNotes>
</PropertyGroup>
</Target>
</Project>