-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntervals.NET.Domain.Default.csproj
More file actions
23 lines (20 loc) · 1.41 KB
/
Intervals.NET.Domain.Default.csproj
File metadata and controls
23 lines (20 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageId>Intervals.NET.Domain.Default</PackageId>
<Version>0.0.2</Version>
<Authors>blaze6950</Authors>
<Description>Ready-to-use domain implementations for Intervals.NET. Includes 36 optimized domains: numeric types (int, long, double, decimal, etc.), DateTime/DateOnly/TimeOnly with multiple granularities (day, hour, minute, second, tick), TimeSpan domains, and business calendar support. All struct-based with aggressive inlining for maximum performance.</Description>
<PackageTags>range;interval;domain;datetime;numeric;timespan;calendar;business-days;performance;zero-allocation;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>
<ItemGroup>
<ProjectReference Include="..\Intervals.NET.Domain.Abstractions\Intervals.NET.Domain.Abstractions.csproj" />
</ItemGroup>
</Project>