forked from hangfire-postgres/Hangfire.PostgreSql
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathHangfire.PostgreSql.csproj
More file actions
58 lines (54 loc) · 3.48 KB
/
Copy pathHangfire.PostgreSql.csproj
File metadata and controls
58 lines (54 loc) · 3.48 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!--Package info and copyright-->
<PackageId>Hangfire.PostgreSql.ahydrax</PackageId>
<PackageTags>Hangfire;PostgreSql;PostgreSQL;Postgres;postgre</PackageTags>
<PackageReleaseNotes>https://github.com/ahydrax/Hangfire.PostgreSql/releases</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/ahydrax/Hangfire.PostgreSql</PackageProjectUrl>
<PackageLicense>https://raw.githubusercontent.com/ahydrax/Hangfire.PostgreSql/master/LICENSE.md</PackageLicense>
<AssemblyTitle>Hangfire PostgreSQL Storage</AssemblyTitle>
<Description>PostgreSQL storage implementation for Hangfire (background job system for ASP.NET applications).</Description>
<Copyright>Copyright © 2014-2023 Frank Hommers, Burhan Irmikci (barhun), Zachary Sims(zsims), kgamecarter, Stafford Williams (staff0rd), briangweber, Viktor Svyatokha (ahydrax), Christopher Dresel (Dresel), Ben Herila (bherila), Vytautas Kasparavičius (vytautask)</Copyright>
<Authors>Frank Hommers, Burhan Irmikci (barhun), Zachary Sims(zsims), kgamecarter, Stafford Williams (staff0rd), briangweber, Viktor Svyatokha (ahydrax), Christopher Dresel (Dresel), Ben Herila (bherila), Vytautas Kasparavičius (vytautask)</Authors>
<Company>Frank Hommers, Burhan Irmikci (barhun), Zachary Sims(zsims), kgamecarter, Stafford Williams (staff0rd), briangweber, Viktor Svyatokha (ahydrax), Christopher Dresel (Dresel), Ben Herila (bherila), Vytautas Kasparavičius (vytautask)</Company>
</PropertyGroup>
<PropertyGroup>
<!--Build properties-->
<AssemblyName>Hangfire.PostgreSql</AssemblyName>
<TargetFrameworks>netstandard2.0;net462</TargetFrameworks>
<LangVersion>8.0</LangVersion>
<OutputType>Library</OutputType>
<NeutralLanguage>en</NeutralLanguage>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
</PropertyGroup>
<ItemGroup>
<None Remove="Schema\Install.v10.sql" />
<None Remove="Schema\Install.v11.sql" />
<None Remove="Schema\Install.v12.sql" />
<None Remove="Schema\Install.v3.sql" />
<None Remove="Schema\Install.v4.sql" />
<None Remove="Schema\Install.v5.sql" />
<None Remove="Schema\Install.v6.sql" />
<None Remove="Schema\Install.v7.sql" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Schema\Install.v12.sql" />
<EmbeddedResource Include="Schema\Install.v11.sql" />
<EmbeddedResource Include="Schema\Install.v10.sql" />
<EmbeddedResource Include="Schema\Install.v13.sql" />
<EmbeddedResource Include="Schema\Install.v9.sql" />
<EmbeddedResource Include="Schema\Install.v3.sql" />
<EmbeddedResource Include="Schema\Install.v4.sql" />
<EmbeddedResource Include="Schema\Install.v5.sql" />
<EmbeddedResource Include="Schema\Install.v6.sql" />
<EmbeddedResource Include="Schema\Install.v7.sql" />
<EmbeddedResource Include="Schema\Install.v8.sql" Exclude="bin\**;obj\**;**\*.xproj;packages\**;@(EmbeddedResource)" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Dapper" Version="2.1.24" />
<PackageReference Include="Dapper.SqlBuilder" Version="[2.0.78, 2.1)" />
<PackageReference Include="Hangfire.Core" Version="1.8.6" />
<PackageReference Include="Microsoft.CSharp" Version="4.7.0" />
<PackageReference Include="Npgsql" Version="8.0.0" />
</ItemGroup>
</Project>