Metalama.Community.Virtuosity 2026.0.22

Prefix Reserved
There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package Metalama.Community.Virtuosity --version 2026.0.22
                    
NuGet\Install-Package Metalama.Community.Virtuosity -Version 2026.0.22
                    
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="Metalama.Community.Virtuosity" Version="2026.0.22" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Metalama.Community.Virtuosity" Version="2026.0.22" />
                    
Directory.Packages.props
<PackageReference Include="Metalama.Community.Virtuosity" />
                    
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 Metalama.Community.Virtuosity --version 2026.0.22
                    
#r "nuget: Metalama.Community.Virtuosity, 2026.0.22"
                    
#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 Metalama.Community.Virtuosity@2026.0.22
                    
#: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=Metalama.Community.Virtuosity&version=2026.0.22
                    
Install as a Cake Addin
#tool nuget:?package=Metalama.Community.Virtuosity&version=2026.0.22
                    
Install as a Cake Tool

Metalama.Community.Virtuosity

Allows you to make all target methods virtual without adding the virtual keyword to every one of them.

This is a Metalama aspect. It modifies your code during compilation by using source weaving.

Example

Your code:

using Metalama.Community.Virtuosity;

[Virtualize]
class A 
{
  public void M1() { }
  protected void M2() { }
  private void M3() { }
}

What gets compiled:

class A 
{
  public virtual void M1() { }
  protected virtual void M2() { }
  private void M3() { }
}
Installation
  1. Install the NuGet package: dotnet add package Metalama.Community.Virtuosity --prerelease.
  2. Apply the aspect to the relavant types by adding the [Virtualize] attribute to them.
How to use

By annotating a class or a record type with [Virtualize], you make all methods virtual (except those that can't be virtual, like static and private methods).

For more details, see Details.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Metalama.Community.Virtuosity:

Package Downloads
Shinya.Core

Shinya.Framework

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2026.1.15-rc 1,888 5/15/2026
2026.1.14-rc 383 5/13/2026
2026.1.13-preview 87 5/13/2026
2026.1.12-preview 379 5/12/2026
2026.1.11-preview 522 5/6/2026
2026.1.10-preview 873 4/29/2026
2026.1.9-preview 523 4/17/2026
2026.1.8-preview 222 4/13/2026
2026.1.7-preview 672 3/31/2026
2026.1.6-preview 329 3/28/2026
2026.1.5-preview 94 3/26/2026
2026.1.4-preview 184 3/22/2026
2026.1.3-preview 436 3/7/2026
2026.1.2-preview 338 2/11/2026
2026.0.22 95 5/15/2026
2026.0.21 112 4/17/2026
2026.0.20 117 3/25/2026
2026.0.19 105 3/24/2026
2026.0.18 105 3/21/2026
2026.0.17 111 3/12/2026
Loading failed