-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
20 lines (20 loc) · 918 Bytes
/
Directory.Build.props
File metadata and controls
20 lines (20 loc) · 918 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Project>
<PropertyGroup>
<LangVersion>12</LangVersion>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<EnforceCodeStyleInBuild>true</EnforceCodeStyleInBuild>
<!--
Deterministic build on CI: normalizes embedded source paths so the
assembly hash is stable and nuget.info marks the package as
deterministic. GitHub Actions sets CI=true automatically.
-->
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<Authors>Stoolap Contributors</Authors>
<Copyright>Copyright (c) 2026 Stoolap Contributors</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/stoolap/stoolap-csharp</RepositoryUrl>
<PackageProjectUrl>https://stoolap.io</PackageProjectUrl>
</PropertyGroup>
</Project>