ProxyInterfaceGenerator 0.1.0

dotnet add package ProxyInterfaceGenerator --version 0.1.0                
NuGet\Install-Package ProxyInterfaceGenerator -Version 0.1.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="ProxyInterfaceGenerator" Version="0.1.0">
  <PrivateAssets>all</PrivateAssets>
  <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ProxyInterfaceGenerator --version 0.1.0                
#r "nuget: ProxyInterfaceGenerator, 0.1.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.
// Install ProxyInterfaceGenerator as a Cake Addin
#addin nuget:?package=ProxyInterfaceGenerator&version=0.1.0

// Install ProxyInterfaceGenerator as a Cake Tool
#tool nuget:?package=ProxyInterfaceGenerator&version=0.1.0                

Usage

Given: an external existing class which does not implement an interface

public sealed class Person
{
    public string Name { get; set; }

    public string HelloWorld(string name)
    {
        return $"Hello {name} !";
    }
}

Create a partial interface And annotate this with ProxyInterfaceGenerator.Proxy[...] and with the Type which needs to be wrapped:

[ProxyInterfaceGenerator.Proxy(typeof(ProxyInterfaceConsumer.Person))]
public partial interface IPerson
{
}

When the code is compiled, this source generator creates the following two items:

1. An additional partial interface Which defines the same properties and methods as in the external class.

public partial interface IPerson
{
    string Name { get; set; }

    string HelloWorld(string name);
}

2. A Proxy class Which takes the external class in the constructor and wraps all properties and methods.

public class PersonProxy : IPerson
{
    public Person _Instance { get; }

    public PersonProxy(Person instance)
    {
        _Instance = instance;
    }

    public string Name { get => _Instance.Name; set => _Instance.Name = value; }

    public string HelloWorld(string name)
    {
        string name_ = name;
        var result_19479959 = _Instance.HelloWorld(name_);
        return result_19479959;
    }
}

Use it

IPerson p = new PersonProxy(new Person());
p.Name = "test";
p.HelloWorld("stef");
There are no supported framework assets in this package.

Learn more about Target Frameworks and .NET Standard.

  • .NETStandard 2.0

    • 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
0.1.0 190 4/28/2024
0.0.38 112 4/23/2024
0.0.37 302 12/6/2023
0.0.36 300 10/10/2023
0.0.35 340 3/2/2023
0.0.34 253 2/25/2023
0.0.31 252 2/21/2023
0.0.30 420 1/23/2023
0.0.29 258 1/9/2023
0.0.28 306 1/8/2023
0.0.27 334 12/17/2022
0.0.26 288 12/14/2022
0.0.25 324 12/13/2022
0.0.24 3,078 9/5/2022
0.0.23 395 9/4/2022
0.0.22 507 5/9/2022
0.0.21 435 5/8/2022
0.0.20 395 5/8/2022
0.0.19 441 5/8/2022
0.0.18 430 5/8/2022
0.0.17 450 5/7/2022
0.0.16 448 5/6/2022
0.0.15 438 2/6/2022
0.0.14 465 2/4/2022
0.0.13 427 2/2/2022
0.0.12 467 2/1/2022
0.0.11 371 8/10/2021
0.0.10 397 8/6/2021
0.0.9 327 8/5/2021
0.0.8 344 8/3/2021
0.0.6 396 8/1/2021
0.0.5 408 7/31/2021
0.0.4 349 7/28/2021
0.0.3 393 7/25/2021
0.0.2 340 7/25/2021
0.0.1 370 7/25/2021

# 0.1.0 (28 April 2024)
- #68 Use fully qualified names to reduce namespace clashes. [bug]
- #70 Add tests for interfaces with same name but different namespace [test]
- #69 output filename clash in case with multiple interfaces with same name but different namespace [bug]

The full release notes can be found here: https://github.com/StefH/ProxyInterfaceSourceGenerator/blob/main/ReleaseNotes.md