|
1 | | -<Project> |
2 | | - <PropertyGroup> |
3 | | - <!-- Common properties for all projects --> |
4 | | - <TargetFramework>net10.0</TargetFramework> |
5 | | - <LangVersion>14</LangVersion> |
6 | | - <ImplicitUsings>enable</ImplicitUsings> |
7 | | - <Nullable>enable</Nullable> |
8 | | - <TreatWarningsAsErrors>false</TreatWarningsAsErrors> |
9 | | - <GenerateDocumentationFile>true</GenerateDocumentationFile> |
10 | | - <NoWarn>$(NoWarn);CS1591</NoWarn> |
11 | | - |
12 | | - <!-- Performance optimizations --> |
13 | | - <TieredCompilation>true</TieredCompilation> |
14 | | - <TieredCompilationQuickJit>true</TieredCompilationQuickJit> |
15 | | - <PublishTrimmed>false</PublishTrimmed> |
16 | | - <PublishSingleFile>false</PublishSingleFile> |
17 | | - |
18 | | - <!-- Deterministic builds --> |
19 | | - <Deterministic>true</Deterministic> |
20 | | - <ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild> |
21 | | - |
22 | | - <!-- Source control --> |
23 | | - <PublishRepositoryUrl>true</PublishRepositoryUrl> |
24 | | - <EmbedUntrackedSources>true</EmbedUntrackedSources> |
25 | | - <IncludeSymbols>true</IncludeSymbols> |
26 | | - <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
27 | | - |
28 | | - <!-- Package metadata (for libraries only) --> |
29 | | - <Authors>MPCoreDeveloper</Authors> |
30 | | - <Company>MPCoreDeveloper</Company> |
31 | | - <Product>SharpCoreDB</Product> |
32 | | - <Copyright>Copyright © 2025-2026 MPCoreDeveloper</Copyright> |
33 | | - <PackageLicenseExpression>MIT</PackageLicenseExpression> |
34 | | - <PackageProjectUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</PackageProjectUrl> |
35 | | - <RepositoryUrl>https://github.com/MPCoreDeveloper/SharpCoreDB.git</RepositoryUrl> |
36 | | - <RepositoryType>git</RepositoryType> |
37 | | - <PackageTags>database;embedded;nosql;keyvalue;encryption;aes;simd;performance;dotnet10</PackageTags> |
38 | | - <PackageReadmeFile>README.md</PackageReadmeFile> |
39 | | - <PackageIcon>icon.png</PackageIcon> |
40 | | - <Description>High-performance embedded database for .NET 10 with AES-256 encryption, SIMD analytics, and B-tree indexes</Description> |
41 | | - </PropertyGroup> |
42 | | - |
43 | | - <!-- Source Link for debugging --> |
44 | | - <ItemGroup> |
45 | | - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.103" PrivateAssets="All" /> |
46 | | - </ItemGroup> |
47 | | -</Project> |
| 1 | +<Project> |
| 2 | + <PropertyGroup> |
| 3 | + <!-- Common properties for all projects --> |
| 4 | + <TargetFramework>net10.0</TargetFramework> |
| 5 | + <LangVersion>14</LangVersion> |
| 6 | + <ImplicitUsings>enable</ImplicitUsings> |
| 7 | + <Nullable>enable</Nullable> |
| 8 | + <TreatWarningsAsErrors>false</TreatWarningsAsErrors> |
| 9 | + <GenerateDocumentationFile>true</GenerateDocumentationFile> |
| 10 | + <NoWarn>$(NoWarn);CS1591</NoWarn> |
| 11 | + |
| 12 | + <!-- Performance optimizations --> |
| 13 | + <TieredCompilation>true</TieredCompilation> |
| 14 | + <TieredCompilationQuickJit>true</TieredCompilationQuickJit> |
| 15 | + <PublishTrimmed>false</PublishTrimmed> |
| 16 | + <PublishSingleFile>false</PublishSingleFile> |
| 17 | + |
| 18 | + <!-- Deterministic builds --> |
| 19 | + <Deterministic>true</Deterministic> |
| 20 | + <ContinuousIntegrationBuild Condition="'$(GITHUB_ACTIONS)' == 'true'">true</ContinuousIntegrationBuild> |
| 21 | + |
| 22 | + <!-- Source control --> |
| 23 | + <PublishRepositoryUrl>true</PublishRepositoryUrl> |
| 24 | + <EmbedUntrackedSources>true</EmbedUntrackedSources> |
| 25 | + <IncludeSymbols>true</IncludeSymbols> |
| 26 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
| 27 | + |
| 28 | + <!-- Package metadata (for libraries only) --> |
| 29 | + <Authors>MPCoreDeveloper</Authors> |
| 30 | + <Company>MPCoreDeveloper</Company> |
| 31 | + <Product>SharpCoreDB</Product> |
| 32 | + <Copyright>Copyright © 2025-2026 MPCoreDeveloper</Copyright> |
| 33 | + <PackageLicenseExpression>MIT</PackageLicenseExpression> |
| 34 | + <PackageProjectUrl>https://github.com/MPCoreDeveloper/SharpCoreDB</PackageProjectUrl> |
| 35 | + <RepositoryUrl>https://github.com/MPCoreDeveloper/SharpCoreDB.git</RepositoryUrl> |
| 36 | + <RepositoryType>git</RepositoryType> |
| 37 | + <PackageTags>database;embedded;nosql;keyvalue;encryption;aes;simd;performance;dotnet10</PackageTags> |
| 38 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 39 | + <PackageIcon>icon.png</PackageIcon> |
| 40 | + <Description>High-performance embedded database for .NET 10 with AES-256 encryption, SIMD analytics, and B-tree indexes</Description> |
| 41 | + </PropertyGroup> |
| 42 | + |
| 43 | + <!-- Source Link for debugging --> |
| 44 | + <ItemGroup> |
| 45 | + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="10.0.201" PrivateAssets="All" /> |
| 46 | + </ItemGroup> |
| 47 | +</Project> |
0 commit comments