-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntervals.NET.Domain.Abstractions.csproj
More file actions
19 lines (17 loc) · 1.2 KB
/
Intervals.NET.Domain.Abstractions.csproj
File metadata and controls
19 lines (17 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>Intervals.NET.Domain.Abstractions</PackageId>
<Version>0.0.2</Version>
<Authors>blaze6950</Authors>
<Description>Core abstractions for domain-specific range operations in Intervals.NET. Defines interfaces for fixed-step and variable-step domains, enabling type-safe, performant range manipulations with explicit O(1) vs O(N) semantics. Use this package to implement custom domains or extend the library.</Description>
<PackageTags>range;interval;domain;abstractions;interfaces;performance;fixed-step;variable-step;generic;intervals</PackageTags>
<RepositoryUrl>https://github.com/blaze6950/Intervals.NET</RepositoryUrl>
<PackageProjectUrl>https://github.com/blaze6950/Intervals.NET</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<DocumentationFile>bin\$(Configuration)\$(TargetFramework)\$(AssemblyName).xml</DocumentationFile>
</PropertyGroup>
</Project>