Skip to content

Commit

Permalink
ci: Add README and LICENSE (#9)
Browse files Browse the repository at this point in the history
* Updated README and added to package.

* Added Apache-2.0 license expression.
  • Loading branch information
DoubleTK authored Oct 3, 2024
1 parent 99d0a78 commit 85b57db
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,14 @@
# OddDotCSharp
C# Client and Builder for communicating with OddDotNet
C# Client and Builder for communicating with OddDotNet over gRPC.

## Description
OddDotCSharp is a gRPC client (http is coming soon) for communicating with [OddDotNet](https://github.com/OddDotNet/OddDotNet),
an OpenTelemetry test harness that enables Observability Driven Development (ODD).

This project is in active development. Check back often for updates.

## NuGet
The library is available via NuGet as [OddDotNet.Client](https://www.nuget.org/packages/OddDotNet.Client).

## Contributing
Coming soon.
6 changes: 6 additions & 0 deletions src/OddDotCSharp/OddDotCSharp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
<PropertyGroup>
<PackageId>OddDotNet.Client</PackageId>
<PackageTags>OddDotNet</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
</PropertyGroup>

<ItemGroup>
Expand All @@ -28,5 +30,9 @@
<ItemGroup>
<Protobuf Include="OddDotProto/**/*.proto" GrpcServices="Client" ProtoRoot="OddDotProto/"/>
</ItemGroup>

<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>

</Project>

0 comments on commit 85b57db

Please sign in to comment.