-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathClockworks.csproj
More file actions
47 lines (35 loc) · 1.87 KB
/
Clockworks.csproj
File metadata and controls
47 lines (35 loc) · 1.87 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<!-- Performance optimizations -->
<TieredCompilation>true</TieredCompilation>
<TieredPGO>true</TieredPGO>
<!-- Package metadata -->
<PackageId>Clockworks</PackageId>
<AssemblyName>Clockworks</AssemblyName>
<RootNamespace>Clockworks</RootNamespace>
<Version>1.3.1</Version>
<Authors>Dexter Ajoku</Authors>
<Company>CloudyBox</Company>
<Description>Clockworks is a .NET library for deterministic, fully controllable time in distributed-system simulations and tests. It provides a simulated TimeProvider with deterministic timer scheduling, TimeProvider-driven timeouts, UUIDv7 generation, and Hybrid Logical Clock (HLC) utilities with lightweight instrumentation.</Description>
<PackageTags>clock;time;timeprovider;deterministic;simulation;testing;timers;timeouts;uuid;uuidv7;guid;hlc;hybrid-logical-clock;distributed-systems</PackageTags>
<RepositoryUrl>https://github.com/dexcompiler/Clockworks</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<!-- SourceLink package reference is in this project; common SourceLink properties are set in Directory.Build.props -->
</PropertyGroup>
<ItemGroup>
<Compile Remove="obj\**\*.cs" />
<EmbeddedResource Remove="obj\**\*" />
<None Remove="obj\**\*" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.1" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>