Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions 36 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,42 @@ Zenith.NET targets modern .NET (including .NET 10.0) and integrates with multipl
- Designed for performance and easy integration
- Consistent, cross-platform developer experience

## NuGet Packages

### Core

| Package | Description | NuGet |
| :--------- | :-------------------------------- | :--------------------------------------------------------------------------------------------------------------------: |
| Zenith.NET | Core graphics abstraction library | [![NuGet](https://img.shields.io/nuget/v/Zenith.NET.svg)](https://www.nuget.org/packages/Zenith.NET) |

### Backends

| Package | Description | NuGet |
| :------------------- | :------------------------------- | :------------------------------------------------------------------------------------------------------------------------------------: |
| Zenith.NET.DirectX12 | DirectX12 backend implementation | [![NuGet](https://img.shields.io/nuget/v/Zenith.NET.DirectX12.svg)](https://www.nuget.org/packages/Zenith.NET.DirectX12) |
| Zenith.NET.Metal | Metal backend implementation | [![NuGet](https://img.shields.io/nuget/v/Zenith.NET.Metal.svg)](https://www.nuget.org/packages/Zenith.NET.Metal) |
| Zenith.NET.Vulkan | Vulkan backend implementation | [![NuGet](https://img.shields.io/nuget/v/Zenith.NET.Vulkan.svg)](https://www.nuget.org/packages/Zenith.NET.Vulkan) |

### Extensions

| Package | Description | NuGet |
| :------------------------------- | :----------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------------------: |
| Zenith.NET.Extensions.ImageSharp | ImageSharp texture loading extension | [![NuGet](https://img.shields.io/nuget/v/Zenith.NET.Extensions.ImageSharp.svg)](https://www.nuget.org/packages/Zenith.NET.Extensions.ImageSharp) |
| Zenith.NET.Extensions.ImGui | Dear ImGui integration | [![NuGet](https://img.shields.io/nuget/v/Zenith.NET.Extensions.ImGui.svg)](https://www.nuget.org/packages/Zenith.NET.Extensions.ImGui) |
| Zenith.NET.Extensions.Skia | SkiaSharp integration | [![NuGet](https://img.shields.io/nuget/v/Zenith.NET.Extensions.Skia.svg)](https://www.nuget.org/packages/Zenith.NET.Extensions.Skia) |
| Zenith.NET.Extensions.Slang | Slang shader compiler extension | [![NuGet](https://img.shields.io/nuget/v/Zenith.NET.Extensions.Slang.svg)](https://www.nuget.org/packages/Zenith.NET.Extensions.Slang) |

### Views

| Package | Description | NuGet |
| :------------------------ | :--------------------------------- | :--------------------------------------------------------------------------------------------------------------------------------------------: |
| Zenith.NET.Views | Shared UI view abstractions | [![NuGet](https://img.shields.io/nuget/v/Zenith.NET.Views.svg)](https://www.nuget.org/packages/Zenith.NET.Views) |
| Zenith.NET.Views.Avalonia | Avalonia UI integration | [![NuGet](https://img.shields.io/nuget/v/Zenith.NET.Views.Avalonia.svg)](https://www.nuget.org/packages/Zenith.NET.Views.Avalonia) |
| Zenith.NET.Views.Maui | .NET MAUI integration | [![NuGet](https://img.shields.io/nuget/v/Zenith.NET.Views.Maui.svg)](https://www.nuget.org/packages/Zenith.NET.Views.Maui) |
| Zenith.NET.Views.WinForms | Windows Forms integration | [![NuGet](https://img.shields.io/nuget/v/Zenith.NET.Views.WinForms.svg)](https://www.nuget.org/packages/Zenith.NET.Views.WinForms) |
| Zenith.NET.Views.WinUI | WinUI 3 / Uno Platform integration | [![NuGet](https://img.shields.io/nuget/v/Zenith.NET.Views.WinUI.svg)](https://www.nuget.org/packages/Zenith.NET.Views.WinUI) |
| Zenith.NET.Views.WPF | WPF integration | [![NuGet](https://img.shields.io/nuget/v/Zenith.NET.Views.WPF.svg)](https://www.nuget.org/packages/Zenith.NET.Views.WPF) |

## Graphics Backends

Zenith.NET supports multiple graphics APIs that cover mainstream rendering technologies, making it easy to choose the right backend for your scenario.
Expand Down
5 changes: 2 additions & 3 deletions 5 sources/NuGet.Packaging.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
<PackageOutputPath>$(MSBuildThisFileDirectory)..\.nuget</PackageOutputPath>

<!-- Package Metadata -->
<Version>0.0.1</Version>
<Version>0.0.2</Version>
<Authors>qian-o</Authors>
<Copyright>Copyright (c) 2026 qian-o</Copyright>
<Description></Description>
<Description>Zenith.NET is a modern, cross-platform graphics and compute library for .NET. It provides a unified GPU programming interface supporting DirectX12, Metal, and Vulkan backends.</Description>

<!-- Repository Information -->
<RepositoryType>Git</RepositoryType>
Expand All @@ -21,7 +21,6 @@
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>DirectX12;Metal;Vulkan;ImageSharp;ImGui;Skia;Slang;Avalonia;Maui;Uno;WinForms;WinUI;WPF;GPU;Native</PackageTags>
<PackageReleaseNotes></PackageReleaseNotes>

<!-- Debug Symbols & Source Link -->
<IncludeSymbols>true</IncludeSymbols>
Expand Down
Morty Proxy This is a proxified and sanitized view of the page, visit original site.