DevProxy.Abstractions
3.0.0-beta.3
dotnet add package DevProxy.Abstractions --version 3.0.0-beta.3
NuGet\Install-Package DevProxy.Abstractions -Version 3.0.0-beta.3
<PackageReference Include="DevProxy.Abstractions" Version="3.0.0-beta.3" />
<PackageVersion Include="DevProxy.Abstractions" Version="3.0.0-beta.3" />
<PackageReference Include="DevProxy.Abstractions" />
paket add DevProxy.Abstractions --version 3.0.0-beta.3
#r "nuget: DevProxy.Abstractions, 3.0.0-beta.3"
#:package DevProxy.Abstractions@3.0.0-beta.3
#addin nuget:?package=DevProxy.Abstractions&version=3.0.0-beta.3&prerelease
#tool nuget:?package=DevProxy.Abstractions&version=3.0.0-beta.3&prerelease
Dev Proxy Abstractions
Abstractions for building custom Dev Proxy plugins. Dev Proxy is an API simulator that helps you effortlessly test your app beyond the happy path.
What This Package Does
This package provides the interfaces, base classes, and models needed to build custom Dev Proxy plugins. Use it when you want to extend Dev Proxy with your own functionality.
Usage
Create a new class library project and add a reference to this package:
dotnet add package DevProxy.Abstractions
Then, implement the IPlugin interface or inherit from BasePlugin:
using DevProxy.Abstractions.Plugins;
using DevProxy.Abstractions.Proxy;
using Microsoft.Extensions.Logging;
public class MyPlugin(
ILogger logger,
ISet<UrlToWatch> urlsToWatch) : BasePlugin(logger, urlsToWatch)
{
public override string Name => nameof(MyPlugin);
public override async Task BeforeRequestAsync(
ProxyRequestArgs e,
CancellationToken cancellationToken)
{
// Your custom logic here
}
}
For more information, see the Dev Proxy documentation.
| Product | Versions 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. |
-
net10.0
- Markdig (>= 1.2.0)
- Microsoft.EntityFrameworkCore.Sqlite (>= 10.0.7)
- Microsoft.Extensions.Configuration (>= 10.0.8)
- Microsoft.Extensions.Configuration.Binder (>= 10.0.8)
- Microsoft.Extensions.Configuration.Json (>= 10.0.8)
- Microsoft.Extensions.Logging.Abstractions (>= 10.0.8)
- Microsoft.OpenApi (>= 3.5.3)
- Microsoft.OpenApi.YamlReader (>= 3.5.3)
- Newtonsoft.Json.Schema (>= 4.0.1)
- Scriban (>= 7.2.0)
- System.CommandLine (>= 2.0.8)
- Unobtanium.Web.Proxy (>= 0.1.5)
- YamlDotNet (>= 17.1.0)
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-beta.3 | 80 | 5/18/2026 |
| 3.0.0-beta.2 | 49 | 5/13/2026 |