-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDirectory.Build.props
32 lines (27 loc) · 1.35 KB
/
Directory.Build.props
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
<Project>
<Import Project="Versions.props" />
<PropertyGroup>
<Version>$(Sqlite3MCNuGetVersion)</Version>
<Authors>Ulrich Telle, et al.</Authors>
<PackageTags>SQLite;Encryption;wxSQLite3;SQLCipher</PackageTags>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://utelle.github.io/SQLite3MultipleCiphers/</PackageProjectUrl>
<Copyright>Copyright (c) 2023-2024 Ulrich Telle, et al.</Copyright>
<PublishRepositoryUrl>True</PublishRepositoryUrl>
<PackageReleaseNotes>https://github.com/utelle/SQLite3MultipleCiphers-NuGet/releases</PackageReleaseNotes>
<UseArtifactsOutput>True</UseArtifactsOutput>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>$(MSBuildThisFileDirectory)key.snk</AssemblyOriginatorKeyFile>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<IncludeSymbols>True</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<PackageIcon>Icon.png</PackageIcon>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)SQLite3MultipleCiphersLogo-128x128.png" Pack="True" PackagePath="Icon.png" Visible="False" />
</ItemGroup>
</Project>