-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTop2000.Data.ClientDatabase.csproj
More file actions
50 lines (44 loc) · 2.02 KB
/
Top2000.Data.ClientDatabase.csproj
File metadata and controls
50 lines (44 loc) · 2.02 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseRidGraph>false</UseRidGraph>
<IsPackable>true</IsPackable>
<Deterministic>true</Deterministic>
<PackageId>RickNeeftDevelopment.Top2000App.Data</PackageId>
<Description>Create an auto upgradable client database based on Top2000 Data</Description>
<Copyright>Copyright (c) Rick Neeft Development 2024</Copyright>
<PackageProjectUrl>https://github.com/Top2000app/data</PackageProjectUrl>
<Version>2.2.0</Version>
<Authors>Rick Neeft</Authors>
<Product>Top2000App Data</Product>
<PackageIcon>nugeticon.png</PackageIcon>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>Top2000 Top2000App</PackageTags>
<PackageLicenseExpression>GPL-3.0-only</PackageLicenseExpression>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
<SourceLinkCreate>true</SourceLinkCreate>
<RepositoryUrl>https://github.com/Top2000app/data</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
<ItemGroup>
<Compile Include="..\Top2000.Data.SQLScripts\Top2000Data.cs" Link="Top2000Data.cs" />
</ItemGroup>
<ItemGroup>
<None Include="..\..\..\README.md" Pack="true" PackagePath="\" />
<None Include="..\..\..\docs\nugeticon.png" Pack="true" PackagePath="\" />
<EmbeddedResource Include="..\Top2000.Data.SQLScripts\sql\*.sql" LinkBase="sql" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.0" />
<PackageReference Include="Microsoft.Extensions.Http" Version="10.0.0" />
<PackageReference Include="morelinq" Version="4.4.0" />
<PackageReference Include="sqlite-net-pcl" Version="1.9.172" />
</ItemGroup>
<ItemGroup>
<Folder Include="sql\" />
</ItemGroup>
</Project>