Aprillz.MewVG.Core 0.8.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Aprillz.MewVG.Core --version 0.8.0
                    
NuGet\Install-Package Aprillz.MewVG.Core -Version 0.8.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Aprillz.MewVG.Core" Version="0.8.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Aprillz.MewVG.Core" Version="0.8.0" />
                    
Directory.Packages.props
<PackageReference Include="Aprillz.MewVG.Core" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Aprillz.MewVG.Core --version 0.8.0
                    
#r "nuget: Aprillz.MewVG.Core, 0.8.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Aprillz.MewVG.Core@0.8.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Aprillz.MewVG.Core&version=0.8.0
                    
Install as a Cake Addin
#tool nuget:?package=Aprillz.MewVG.Core&version=0.8.0
                    
Install as a Cake Tool

Aprillz.MewVG

A cross-platform, fully managed .NET vector graphics library - a C# port of NanoVG with no native dependencies.

Concept

  • Pure C# / fully managed (no native binaries to ship)
  • OpenGL on Windows/Linux, Metal on macOS
  • NanoVG drawing model (paths, fills, strokes, gradients, clipping)
  • NativeAOT / Trim friendly (net8.0, net10.0)

Packages

  • Aprillz.MewVG.Core - platform-agnostic context, path, and paint API
  • Aprillz.MewVG.GL - OpenGL rendering backend (Windows, Linux)
  • Aprillz.MewVG.Metal - Metal rendering backend (macOS)

Install

dotnet add package Aprillz.MewVG.Core
dotnet add package Aprillz.MewVG.GL      # OpenGL (Windows, Linux)
# or
dotnet add package Aprillz.MewVG.Metal   # Metal (macOS)

Quick start

using Aprillz.MewVG;

// vg is created through a backend (Aprillz.MewVG.GL / .Metal).
vg.BeginFrame(width, height, devicePixelRatio);

vg.BeginPath();
vg.RoundedRect(20, 20, 200, 120, 12);
vg.FillColor(NVGcolor.RGBA(80, 160, 220, 255));
vg.Fill();

vg.EndFrame();
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 is compatible.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net10.0

    • No dependencies.
  • net8.0

    • No dependencies.

NuGet packages (5)

Showing the top 5 NuGet packages that depend on Aprillz.MewVG.Core:

Package Downloads
Aprillz.MewVG.GL

OpenGL rendering backend for Aprillz.MewVG

Aprillz.MewUI.Backend.MewVG.Win32

MewVG (NanoVG) OpenGL backend for Aprillz.MewUI on Win32

Aprillz.MewUI.Backend.MewVG.MacOS

MewVG (NanoVG/Metal) backend for Aprillz.MewUI on macOS

Aprillz.MewUI.Backend.MewVG.X11

MewVG (NanoVG) OpenGL backend for Aprillz.MewUI on Linux X11

Aprillz.MewVG.Metal

Metal rendering backend for Aprillz.MewVG

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Aprillz.MewVG.Core:

Repository Stars
aprillz/MewUI
A cross-platform and lightweight, code-first .NET GUI framework aimed at NativeAOT.
Version Downloads Last Updated
0.9.0 81 8/31/2026
0.8.0 101 8/26/2026
0.7.1 498 8/19/2026
0.7.0 127 8/19/2026
0.6.0 1,570 7/6/2026
0.5.5 656 6/26/2026
0.5.4 150 6/20/2026
0.5.3 1,812 6/7/2026
0.5.2 270 5/11/2026
0.5.1 163 5/10/2026
0.5.0 156 5/10/2026
0.4.0 164 4/24/2026
0.3.2 1,481 4/13/2026
0.3.1 157 4/9/2026
0.3.0 1,434 3/9/2026
0.2.1 170 2/28/2026
0.2.0 300 2/26/2026
0.1.1 169 2/5/2026
0.1.0 166 2/3/2026