![]() |
VOOZH | about |
To single package
dotnet add package H.Ipc.Generator --version 0.21.0
NuGet\Install-Package H.Ipc.Generator -Version 0.21.0
<PackageReference Include="H.Ipc.Generator" Version="0.21.0" />
<PackageVersion Include="H.Ipc.Generator" Version="0.21.0" />Directory.Packages.props
<PackageReference Include="H.Ipc.Generator" />Project file
paket add H.Ipc.Generator --version 0.21.0
#r "nuget: H.Ipc.Generator, 0.21.0"
#:package H.Ipc.Generator@0.21.0
#addin nuget:?package=H.Ipc.Generator&version=0.21.0Install as a Cake Addin
#tool nuget:?package=H.Ipc.Generator&version=0.21.0Install as a Cake Tool
This generator allows you to generate boilerplate code for H.Pipes based on the interface you specify. Generation example: https://github.com/HavenDV/H.ProxyFactory/issues/7#issuecomment-1072287342
Install-Package H.Ipc.Generator
Install-Package H.Ipc.Core
Install-Package H.Pipes
// Common interface
public interface IActionService
{
void ShowTrayIcon();
void HideTrayIcon();
void SendText(string text);
}
// Server side implementation
[H.IpcGenerators.IpcServer]
public partial class ActionService : IActionService
{
public void ShowTrayIcon()
{
MessageBox.Show(nameof(ShowTrayIcon));
}
public void HideTrayIcon()
{
MessageBox.Show(nameof(HideTrayIcon));
}
public void SendText(string text)
{
MessageBox.Show(text);
}
}
// Client side implementation
[H.IpcGenerators.IpcClient]
public partial class ActionServiceClient : IActionService
{
}
// Server initialization
await using var server = new PipeServer<string>(ServerName);
var service = new ActionService();
service.Initialize(server);
await server.StartAsync();
// Client initialization
await using var client = new PipeClient<string>(ServerName);
var service = new ActionServiceClient();
service.Initialize(client);
await client.ConnectAsync();
// Client usage
client.ShowTrayIcon();
The generated code currently requires C# version 8 and above. You can enable this using the following code in your .csproj file:
<PropertyGroup>
<LangVersion>preview</LangVersion>
</PropertyGroup>
Learn more about Target Frameworks and .NET Standard.
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 0.21.0 | 622 | 3/9/2023 | 0.21.0 is deprecated because it is no longer maintained. |
| 0.20.0 | 755 | 7/13/2022 | 0.20.0 is deprecated because it is no longer maintained. |
| 0.19.3 | 733 | 6/19/2022 | 0.19.3 is deprecated because it is no longer maintained. |
| 0.19.2 | 683 | 6/7/2022 | 0.19.2 is deprecated because it is no longer maintained. |
| 0.9.11 | 703 | 5/20/2022 | 0.9.11 is deprecated because it is no longer maintained. |
| 0.9.10 | 643 | 5/19/2022 | 0.9.10 is deprecated because it is no longer maintained. |
| 0.9.8 | 737 | 3/16/2022 | 0.9.8 is deprecated because it is no longer maintained. |
| 0.9.7 | 775 | 3/15/2022 | 0.9.7 is deprecated because it is no longer maintained. |
| 0.9.6 | 673 | 3/12/2022 | 0.9.6 is deprecated because it is no longer maintained. |
| 0.9.5 | 691 | 3/11/2022 | 0.9.5 is deprecated because it is no longer maintained. |
| 0.9.4 | 683 | 3/10/2022 | 0.9.4 is deprecated because it is no longer maintained. |
| 0.9.3 | 673 | 3/10/2022 | 0.9.3 is deprecated because it is no longer maintained. |
⭐ Last 10 features:
To steps.
Lowered dotnet version requirements to run the generator.
To ConventionalCommitsGitInfo.
Moved extensions to H.Generators.Extensions.
To H.Generators.Extensions.
Added ExceptionOccurred event to generated code.
Replaced usings to `global::` prefixes.
Changed implementation to use IPipeConnection.
Added request.Type server check.
Added base RpcRequest type.
🐞 Last 10 fixes:
Fixed some issues.
Fixed H.Ipc.Core package version.
Fixed tests.
Fixed H.Ipc.Core version.
Removed unused code.
Fixed tests.
Fixed request code generation for separate client/server libs.
Fixed some formatting bugs.
Removed net5/net6 targets from H.Ipc.Core.
Fixed CI.