46 lines
1.7 KiB
XML
46 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup Label="Configuration" Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<OutputType>exe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netstandard2.0</TargetFrameworks>
|
|
<Version>3.2.0</Version>
|
|
<AssemblyVersion>3.2.0.0</AssemblyVersion>
|
|
<FileVersion>3.2.0.0</FileVersion>
|
|
<Description>RavenDB job storage for Hangfire - Console Example</Description>
|
|
<Authors>CadyIO <contact@cady.io></Authors>
|
|
<Company>Cady IO</Company>
|
|
<Copyright>Copyright @ Cady LLC</Copyright>
|
|
<PackageLicenseUrl>http://www.gnu.org/licenses/lgpl-3.0.html</PackageLicenseUrl>
|
|
<PackageProjectUrl>https://github.com/CadyIO/hangfire-ravendb</PackageProjectUrl>
|
|
<PackageIconUrl>https://avatars2.githubusercontent.com/u/7880472?v=3&s=200</PackageIconUrl>
|
|
<PackageId>Hangfire.Raven.Samples.Console</PackageId>
|
|
<PackageTags>Hangfire;AspNet;MVC;OWIN;RavenDB;Long-Running;Background;Fire-And-Forget;Delayed;Recurring;Tasks;Jobs;Scheduler;Threading;Queues</PackageTags>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/CadyIO/hangfire-ravendb</RepositoryUrl>
|
|
<ApplicationIcon />
|
|
<OutputTypeEx>exe</OutputTypeEx>
|
|
<StartupObject />
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="app.config" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Include="app.config" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Hangfire.Raven\Hangfire.Raven.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Hangfire.Core" Version="1.6.17" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="10.0.3" />
|
|
<PackageReference Include="RavenDB.Client" Version="3.5.4" />
|
|
</ItemGroup>
|
|
|
|
</Project> |