-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
25 lines (24 loc) · 1.15 KB
/
Directory.Build.props
File metadata and controls
25 lines (24 loc) · 1.15 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
<Project>
<PropertyGroup Label="Build">
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<!-- Default: nothing packable. Library project overrides to true. -->
<IsPackable>false</IsPackable>
</PropertyGroup>
<PropertyGroup Label="Package Metadata">
<Authors>Branimir Bajt</Authors>
<Company>ByTech</Company>
<Copyright>Copyright © 2026 Branimir Bajt</Copyright>
<Description>Native C# Persisted Embedded Commit Log</Description>
<PackageProjectUrl>https://github.com/bbajt/csharp-embedded-commit-log</PackageProjectUrl>
<RepositoryUrl>https://github.com/bbajt/csharp-embedded-commit-log</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>commit-log;embedded;append-only;event-sourcing;wal;dotnet;csharp</PackageTags>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
</PropertyGroup>
</Project>