-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathChangeLogVersioningTask.csproj
More file actions
44 lines (37 loc) · 1.77 KB
/
ChangeLogVersioningTask.csproj
File metadata and controls
44 lines (37 loc) · 1.77 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
34
35
36
37
38
39
40
41
42
43
44
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>true</IsPackable>
<Version>1.2.0</Version>
<Title>ChangeLogVersioning.MSBuild</Title>
<Authors>Peder 'hayer' Husom</Authors>
<Description>Grab version number from CHANGELOG.md or other file following the CHANGELOG-format v1.1.0 from keepachangelog.com.</Description>
<PackageTags>build;msbuild;versioning;changelog</PackageTags>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<PackageProjectUrl>https://github.com/hayer/ChangeLogVersion.MSBuildTask</PackageProjectUrl>
<RepositoryUrl>https://github.com/hayer/ChangeLogVersion.MSBuildTask</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
</PropertyGroup>
<!-- Set DevelopmentDependency so package output is not included in consumers' output-->
<Target Name="EnforceDevelopmentDependency" BeforeTargets="GenerateNuspec">
<PropertyGroup>
<DevelopmentDependency>true</DevelopmentDependency>
</PropertyGroup>
</Target>
<PropertyGroup>
<TargetFrameworks>netstandard2.0</TargetFrameworks>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="17.14.7" PrivateAssets="all" ExcludeAssets="Runtime" />
</ItemGroup>
<ItemGroup>
<None Include="LICENSE.md" Pack="true" PackagePath="\" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
<ItemGroup>
<Content Include="build\ChangeLogVersioningTask.props" PackagePath="build\" />
<Content Include="build\ChangeLogVersioningTask.targets" PackagePath="build\" />
</ItemGroup>
</Project>