UltraModding.PluginInfoProps 3.0.0

Suggested Alternatives

UltraModding.PluginInfoGenerator

Additional Details

Package has been renamed for clarity

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

BepInEx PluginInfo generator

Generates MyPluginInfo.cs based on csproj tags.

Basic usage

Define the following properties in your csproj:

<GUID>Example.Plugin</GUID>
<Product>My first plugin</Product>
<Version>1.0.0</Version>

this will generate the following class:

internal static class MyPluginInfo
{
    public const string PLUGIN_GUID = "Example.Plugin";
    public const string PLUGIN_NAME = "My first plugin";
    public const string PLUGIN_VERSION = "1.0.0";
}
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .NETStandard 2.0

    • No dependencies.
  • .NETStandard 2.1

    • No dependencies.

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
3.0.0 277 7/14/2025 3.0.0 is deprecated because it is no longer maintained.

Initial nuget release. Generates a MyPluginInfo class based on assembly metadata.
     - Use the GUID, Product, and Version properties to set the values.