This repository was archived by the owner on Mar 30, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDankDB.csproj
More file actions
90 lines (76 loc) · 3 KB
/
DankDB.csproj
File metadata and controls
90 lines (76 loc) · 3 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Platforms>AnyCPU;ARM32;ARM64;x64;x86</Platforms>
<SignAssembly>False</SignAssembly>
<Version>14.1.0</Version>
<Company>ItzKITb</Company>
<Copyright>(C) 2025 ItzKITb</Copyright>
<AssemblyVersion>14.1</AssemblyVersion>
<FileVersion>14.1</FileVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>ItzKITb</Authors>
<PackageProjectUrl>https://github.com/itzkitb/DankDB/tree/master</PackageProjectUrl>
<Title>DankDB</Title>
<PackageIcon>logo.png</PackageIcon>
<PackageReadmeFile>DankDB.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/itzkitb/DankDB/tree/master</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>json; db; database;</PackageTags>
<PackageOutputPath>$(OutputPath)</PackageOutputPath>
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<ApplicationIcon>logo.ico</ApplicationIcon>
<NuGetAuditMode>all</NuGetAuditMode>
<Description>DankDB - is a powerful library for working with any JSON databases with LRU caching for the least access to the hard disk</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM32'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM64'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x86'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM32'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM64'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
<DebugType>none</DebugType>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x86'">
<DebugType>none</DebugType>
</PropertyGroup>
<ItemGroup>
<Content Include="logo.ico" />
</ItemGroup>
<ItemGroup>
<None Update="DankDB.md">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="LICENSE.txt">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
<None Update="logo.png">
<Pack>True</Pack>
<PackagePath>\</PackagePath>
</None>
</ItemGroup>
</Project>