-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
56 lines (49 loc) · 2.88 KB
/
Directory.Build.props
File metadata and controls
56 lines (49 loc) · 2.88 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
49
50
51
52
53
54
55
56
<Project>
<PropertyGroup>
<!-- Common properties for all projects -->
<TargetFramework>net10.0</TargetFramework>
<LangVersion>14</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<!-- Performance optimizations -->
<TieredCompilation>true</TieredCompilation>
<TieredCompilationQuickJit>true</TieredCompilationQuickJit>
<PublishTrimmed>false</PublishTrimmed>
<PublishSingleFile>false</PublishSingleFile>
<!-- Deterministic builds -->
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild>
<!-- Source control -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- Package metadata (for packable projects only) -->
<Authors Condition="'$(IsPackable)' == 'true'">MPCoreDeveloper</Authors>
<Company Condition="'$(IsPackable)' == 'true'">MPCoreDeveloper</Company>
<Product Condition="'$(IsPackable)' == 'true'">SharpCoreDB</Product>
<Copyright Condition="'$(IsPackable)' == 'true'">Copyright © 2025-2026 MPCoreDeveloper</Copyright>
<PackageLicenseExpression Condition="'$(IsPackable)' == 'true'">MIT</PackageLicenseExpression>
<PackageProjectUrl Condition="'$(IsPackable)' == 'true'">https://github.com/MPCoreDeveloper/SharpCoreDB</PackageProjectUrl>
<RepositoryUrl Condition="'$(IsPackable)' == 'true'">https://github.com/MPCoreDeveloper/SharpCoreDB.git</RepositoryUrl>
<RepositoryType Condition="'$(IsPackable)' == 'true'">git</RepositoryType>
<PackageTags Condition="'$(IsPackable)' == 'true'">database;embedded;nosql;keyvalue;encryption;aes;simd;performance;dotnet10</PackageTags>
<PackageReadmeFile Condition="'$(IsPackable)' == 'true'">README.md</PackageReadmeFile>
<PackageIcon Condition="'$(IsPackable)' == 'true'">icon.png</PackageIcon>
<Description Condition="'$(IsPackable)' == 'true'">High-performance embedded database for .NET 10 with AES-256 encryption, SIMD analytics, and B-tree indexes</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(IsTestProject)' == 'true'">
<UseMicrosoftTestingPlatformRunner>false</UseMicrosoftTestingPlatformRunner>
</PropertyGroup>
<PropertyGroup>
<!-- Suppress expected warning when packing non-packable projects in solution-wide pack -->
<WarnOnPackingNonPackableProject>false</WarnOnPackingNonPackableProject>
</PropertyGroup>
<!-- Source Link for debugging -->
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.103" PrivateAssets="All" />
</ItemGroup>
</Project>