-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
22 lines (21 loc) · 1.11 KB
/
Copy pathDirectory.Build.props
File metadata and controls
22 lines (21 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Project>
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<!-- Package properties -->
<Authors>ModelingEvolution Team</Authors>
<Company>ModelingEvolution</Company>
<Product>ModelingEvolution.Bytes</Product>
<Copyright>Copyright © 2025 ModelingEvolution</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/modelingevolution/bytes</PackageProjectUrl>
<RepositoryUrl>https://github.com/modelingevolution/bytes</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>bytes;size;filesize;datacontract;serialization;value-type</PackageTags>
<Description>A readonly struct for representing byte sizes with human-readable formatting, arithmetic operations, and full serialization support including dictionary key compatibility.</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
</Project>