Installation
ATick for .NET is one self-contained NuGet package. Everything needed for your OS and architecture ships inside it and is loaded automatically — there is no compiler or build step on your side.
Requirements
- Any .NET — .NET Framework 2.0 / 3.5 / 4.x (Windows 7 era), .NET Standard 2.0, or modern .NET 5/6/7/8 and up. The package multi-targets them all.
- Any supported OS/arch — Windows 7+ (x86/x64/ARM64), Linux (x64/ARM64/ARM), macOS (Intel/Apple Silicon).
Install
terminal
dotnet add package ATick.csproj:
MyApp.csproj
<PackageReference Include="ATick" Version="1.0.6" />Package Manager Console:
PMC
Install-Package ATickOne package, every platform
The package targets every supported platform and .NET selects the right one at runtime, so the same dependency works everywhere.
| RID | Supported |
|---|---|
win-x64 / win-x86 | Windows 7 → 11, 64 / 32-bit (Windows-7-compatible) |
win-arm64 | Windows on ARM64 |
linux-x64 | Linux x64 |
linux-arm64 / linux-arm | Linux ARM64 / ARM |
osx-x64 / osx-arm64 | macOS Intel / Apple Silicon |
Verify the install
Verify.cs
using Aniketc068.ATick;
Console.WriteLine(Atick.Version()); // prints the version, e.g. 1.0.6