-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommon.props
More file actions
38 lines (33 loc) · 1.57 KB
/
common.props
File metadata and controls
38 lines (33 loc) · 1.57 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
<Project>
<PropertyGroup>
<!-- Common package metadata -->
<Authors>cocosip</Authors>
<Company>cocosip</Company>
<Copyright>Copyright © $(Company) $([System.DateTime]::Now.Year)</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/cocosip/Locus</PackageProjectUrl>
<RepositoryUrl>https://github.com/cocosip/Locus</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>storage;file-system;queue;multi-tenant;sqlite;netstandard</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>A high-performance, multi-tenant file storage pool system with queue-based processing and SQLite metadata management.</Description>
<!-- Version information -->
<Version>1.4.0</Version>
<!-- Build configuration -->
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<!-- Source Link support for debugging -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
<!-- Deterministic builds for reproducibility -->
<Deterministic>true</Deterministic>
</PropertyGroup>
<!-- Include README in package -->
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>