-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKuestenlogik.Bowire.Templates.csproj
More file actions
48 lines (43 loc) · 3.05 KB
/
Copy pathKuestenlogik.Bowire.Templates.csproj
File metadata and controls
48 lines (43 loc) · 3.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<PackageType>Template</PackageType>
<PackageId>Kuestenlogik.Bowire.Templates</PackageId>
<Title>Bowire Plugin Templates</Title>
<VersionPrefix>1.1.0</VersionPrefix>
<PackageReleaseNotes>* New item template `bowire-cli-cmd` — scaffolds an `IBowireCliCommand` implementation that contributes a `bowire <verb>` subcommand.
* New item template `bowire-mock-emit` — scaffolds an `IBowireMockEmitter` implementation that replays `BowireRecording` steps over a wire protocol.
* `bowire-plugin` template's generated `Directory.Packages.props` floor bumped to Bowire 1.6.0.
* Initial release.
* Scaffolds a Bowire protocol plugin with `IBowireProtocol` stub, `.slnx` solution, xunit tests, and optional GitHub Actions CI.
* `--IncludeDuplexChannel` flag scaffolds a full `IBowireChannel` echo demo for bidirectional/duplex protocols.
* `--Preset none|rest|mqtt|websocket|grpc|signalr` pre-fills `DiscoverAsync`/`InvokeAsync` with transport-specific starter code (HTTP+OpenAPI probe; MQTTnet connect+publish; ClientWebSocket roundtrip; GrpcChannel connect; SignalR HubConnection invoke).
* `--IncludeIntegrationTests` scaffolds a second test project that hosts the plugin inside an ASP.NET Core `TestServer` and exercises the real Bowire HTTP API.
* `--ProtocolId` is lowercased and stripped to `[a-z0-9_-]` automatically.
* `--IconSvg` parameter embeds custom SVG markup in the generated `IconSvg` property (default keeps the current circle demo).
* `--Minimal` shortcut combines `ProjectOnly=true + IncludeCI=false + IncludeIntegrationTests=false` for the smallest possible output.</PackageReleaseNotes>
<Authors>Kuestenlogik</Authors>
<Company>Kuestenlogik</Company>
<Copyright>Copyright (c) 2026 Kuestenlogik</Copyright>
<Description>dotnet new / Visual Studio templates for scaffolding Bowire protocol plugins.</Description>
<PackageTags>bowire bowire-plugin template dotnet-new plugin</PackageTags>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/Kuestenlogik/Bowire.Templates</RepositoryUrl>
<PackageProjectUrl>https://github.com/Kuestenlogik/Bowire.Templates</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageIcon>icon.png</PackageIcon>
<TargetFramework>netstandard2.0</TargetFramework>
<IncludeContentInPack>true</IncludeContentInPack>
<IncludeBuildOutput>false</IncludeBuildOutput>
<ContentTargetFolders>content</ContentTargetFolders>
<EnableDefaultItems>false</EnableDefaultItems>
<NoDefaultExcludes>true</NoDefaultExcludes>
<NoWarn>$(NoWarn);NU5128</NoWarn>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
</PropertyGroup>
<ItemGroup>
<Content Include="src\**\*" Exclude="src\**\bin\**;src\**\obj\**;src\**\artifacts\**" />
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="images\bowire_logo_small.png" Pack="true" PackagePath="icon.png" Visible="false" />
</ItemGroup>
</Project>