Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE.md → LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
APPENDIX: How to apply the Apache License to your work.

To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "{}"
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

The .NET client for TrogonEventStore. The package targets .NET 10.

This project is derived from the Apache 2.0 licensed KurrentDB .NET client. See [LICENSE.md](LICENSE.md) for licensing and attribution. During the initial bootstrap, the public API remains under the `KurrentDB.Client` namespaces while package identity and distribution move to TrogonEventStore.
This project is derived from the Apache 2.0 licensed KurrentDB .NET client. See [LICENSE](LICENSE) for licensing and attribution. During the initial bootstrap, the public API remains under the `KurrentDB.Client` namespaces while package identity and distribution move to TrogonEventStore.

## Install from GitHub Packages

Expand Down
2 changes: 1 addition & 1 deletion samples/secure-with-tls/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ ARG BUILD_CONFIGURATION

WORKDIR /src

COPY Directory.Build.props Directory.Build.targets LICENSE.md README.md ./
COPY Directory.Build.props Directory.Build.targets LICENSE README.md ./
COPY src ./src
COPY samples/Directory.Build.props ./samples/
COPY samples/${APP_NAME} ./samples/${APP_NAME}
Expand Down
4 changes: 2 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</PropertyGroup>

<PropertyGroup>
<PackageLicenseFile>LICENSE.md</PackageLicenseFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/TrogonStack/TrogonEventStore-Client-Dotnet</PackageProjectUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
Expand All @@ -23,7 +23,7 @@
</PropertyGroup>

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

Expand Down