AVIP.Core 1.0.9

dotnet add package AVIP.Core --version 1.0.9
                    
NuGet\Install-Package AVIP.Core -Version 1.0.9
                    
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="AVIP.Core" Version="1.0.9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="AVIP.Core" Version="1.0.9" />
                    
Directory.Packages.props
<PackageReference Include="AVIP.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 AVIP.Core --version 1.0.9
                    
#r "nuget: AVIP.Core, 1.0.9"
                    
#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 AVIP.Core@1.0.9
                    
#: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=AVIP.Core&version=1.0.9
                    
Install as a Cake Addin
#tool nuget:?package=AVIP.Core&version=1.0.9
                    
Install as a Cake Tool

AVIP.Core

AVIP.Core is the core API library for the AVIP system. It is distributed as a NuGet package and is intended to be used by developers when creating modular VIP features for AVIP.

AVIP.Core contains abstractions, contracts, helpers, and shared infrastructure.

🎯 Purpose

AVIP.Core exists to:

  • Provide a stable and well-defined API for AVIP feature development
  • Enable external feature development without modifying the AVIP repository
  • Centralize shared contracts, services, and utilities
  • Ensure binary compatibility between the AVIP host and feature modules
  • Act as the single dependency required to build AVIP features

📦 Installation

AVIP.Core is published as a NuGet package and is consumed by feature projects.

dotnet add package AVIP.Core

You typically do not reference AVIP.Plugin or AVIP itself when authoring features — only AVIP.Core.


AVIP provides an official dotnet template to simplify feature creation.

1️⃣ Install the feature template

dotnet new install avip.feature.template

2️⃣ Create a new feature project

dotnet new avip-feature \
  --FeatureId my_feature \
  --FeatureName "MyFeature" \
  --Author "YourName" \
  --Version 1.0.0 \
  --CorePackageVersion 1.0.3

This will:

  • Create a correctly structured feature project
  • Reference AVIP.Core automatically
  • Generate required metadata and boilerplate

3️⃣ (Optional) Add AVIP.Core manually

If you are not using the template:

dotnet add package AVIP.Core

🚀 Basic Feature Example

namespace FeatureName
{
    using AVIP.Core.Players;
    using AVIP.Core.Features;
    using SwiftlyS2.Shared.GameEventDefinitions;

    using System.ComponentModel;

    [FeatureMetadata("FeatureId", Name = "FeatureName", Author = "AVIP_Author", Description = "AVIP_Description", Version = "AVIP_Version")]
    public sealed class FeatureName : BaseFeature
    {
        public override void Initialize()
        {
            Logger.Info("Initialized {0} ({1})", Name, Id);
        }

        public override void Release()
        {
            base.Release();
            Logger.Info("Released {0} ({1})", Name, Id);
        }
    }
}

The compiled .dll can then be placed inside:

addons/swiftly/plugins/AVIP/features

and will be discovered automatically by the AVIP host.

🤝 Contributing

Changes to AVIP.Core affect every feature in the ecosystem.

Contributions should:

  • Be minimal and well-documented
  • Avoid breaking public APIs
  • Prefer additive changes over modifications

Open an issue before submitting large or breaking changes.


📄 License

Licensed under the license specified in the repository. See the LICENSE file for details.


  • AVIP – Main Swiftly plugin hosting features
  • AVIP.Features – Official feature modules
  • avip.feature.template – Official dotnet template for feature creation

AVIP.Core is the contract. Features are the implementation.

Product Compatible and additional computed target framework versions.
.NET 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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.9 224 12/16/2025
1.0.8 222 12/16/2025
1.0.5 219 12/16/2025
1.0.4 217 12/16/2025
1.0.3 203 12/15/2025
1.0.2 70 12/12/2025
1.0.1 70 12/12/2025
1.0.0 70 12/12/2025