-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPlainBytes.System.Extensions.csproj
More file actions
28 lines (24 loc) · 1.24 KB
/
PlainBytes.System.Extensions.csproj
File metadata and controls
28 lines (24 loc) · 1.24 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<Description>Collection of utility extention methods for the System.* namespace.</Description>
<AssemblyTitle>System extensions</AssemblyTitle>
<Authors>PlainBytes</Authors>
<AssemblyName>PlainBytes.System.Extensions</AssemblyName>
<PackageId>PlainBytes.System.Extensions</PackageId>
<PackageTags>System;Extensions;iterators;bcl;</PackageTags>
<PackageProjectUrl>https://github.com/PlainBytes/PlainBytes.System.Extensions</PackageProjectUrl>
<RepositoryUrl>https://github.com/PlainBytes/PlainBytes.System.Extensions</RepositoryUrl>
<PackageLicenseUrl>https://github.com/PlainBytes/PlainBytes.System.Extensions/blob/master/LICENSE</PackageLicenseUrl>
<Version>1.1.0.0</Version>
<AssemblyVersion>$(Version)</AssemblyVersion>
<FileVersion>$(Version)</FileVersion>
<PackageIcon>icon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Include="assets\README.md" Pack="true" PackagePath="\" />
<None Include="assets\icon.png" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>