-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntervals.NET.Domain.Extensions.csproj
More file actions
24 lines (21 loc) · 1.42 KB
/
Intervals.NET.Domain.Extensions.csproj
File metadata and controls
24 lines (21 loc) · 1.42 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>Intervals.NET.Domain.Extensions</PackageId>
<Version>0.0.3</Version>
<Authors>blaze6950</Authors>
<Description>Extension methods for domain-aware range operations in Intervals.NET. Provides Span (count steps), Expand, ExpandByRatio, and Shift operations. Clearly separated into Fixed (O(1)) and Variable (O(N)) namespaces for explicit performance semantics. Works seamlessly with all domain implementations.</Description>
<PackageTags>range;interval;domain;extensions;span;expand;shift;performance;fixed-step;variable-step;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>
<ItemGroup>
<ProjectReference Include="..\..\Intervals.NET\Intervals.NET.csproj" />
<ProjectReference Include="..\Intervals.NET.Domain.Abstractions\Intervals.NET.Domain.Abstractions.csproj" />
</ItemGroup>
</Project>