-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDirectory.Build.props
36 lines (31 loc) · 1.35 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
32
33
34
35
36
<Project>
<PropertyGroup>
<ParentFolderPath>$([System.IO.Directory]::GetParent($(MSBuildProjectDirectory)))</ParentFolderPath>
</PropertyGroup>
<PropertyGroup>
<Version>1.2.0</Version>
<Authors>barncastle</Authors>
<Description>BitsKit is a library for efficient bit-level reading and writing also adding bit field support.</Description>
<Copyright>Copyright © $([System.DateTime]::Now.ToString(yyyy)) barncastle</Copyright>
<PackageTags>bitskit;bits;bitfield;bit-field;bitreader;bitwriter;bitstream;bitpack;bit-pack</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/barncastle/BitsKit</PackageProjectUrl>
<PackageIcon></PackageIcon>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/barncastle/BitsKit</RepositoryUrl>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(ParentFolderPath)/ReleaseNotes.txt"))</PackageReleaseNotes>
</PropertyGroup>
<PropertyGroup>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
</PropertyGroup>
<ItemGroup>
<None Include="..\README.md">
<Pack>true</Pack>
<PackagePath>\</PackagePath>
<Visible>false</Visible>
</None>
</ItemGroup>
</Project>