-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathBitmapNet.csproj
More file actions
29 lines (25 loc) · 1.22 KB
/
Copy pathBitmapNet.csproj
File metadata and controls
29 lines (25 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netstandard2.0</TargetFramework>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Authors>Matthew Razza</Authors>
<Company />
<Description>A Bitmap library (think BitArray or Bit Index, not bmp) written in C# with more functionality than the .NET default.</Description>
<Copyright>Copyright (c) Matthew Razza</Copyright>
<PackageLicenseUrl>https://raw.githubusercontent.com/mrazza/BitmapNet/master/LICENSE</PackageLicenseUrl>
<PackageProjectUrl>https://github.com/mrazza/BitmapNet</PackageProjectUrl>
<RepositoryUrl></RepositoryUrl>
<PackageTags>C#, bitmap, bitarray, bit, index</PackageTags>
<PackageId>Bitmap.Net</PackageId>
<Version>1.0.1</Version>
<AssemblyVersion>1.0.1.0</AssemblyVersion>
<Product>Bitmap.Net</Product>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
</Project>