46 lines
2.0 KiB
XML
46 lines
2.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Description>RavenDB job storage for Hangfire - Console Example</Description>
|
|
<Copyright>Copyright @ 2016 Cady, LLC</Copyright>
|
|
<AssemblyTitle>Hangfire.Raven.Examples.Console</AssemblyTitle>
|
|
<VersionPrefix>2.1.0</VersionPrefix>
|
|
<Authors>Cady <contact@cady.io></Authors>
|
|
<TargetFramework>net452</TargetFramework>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<DebugType>portable</DebugType>
|
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
|
<AssemblyName>Hangfire.Raven.Examples.Console</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<PackageId>Hangfire.Raven.Examples.Console</PackageId>
|
|
<PackageTags>Hangfire;AspNet;MVC;OWIN;RavenDB;Long-Running;Background;Fire-And-Forget;Delayed;Recurring;Tasks;Jobs;Scheduler;Threading;Queues</PackageTags>
|
|
<PackageIconUrl>https://avatars2.githubusercontent.com/u/7880472?v=3&s=200</PackageIconUrl>
|
|
<PackageProjectUrl>https://github.com/cady-io/hangfire-ravendb</PackageProjectUrl>
|
|
<PackageLicenseUrl>http://www.gnu.org/licenses/lgpl-3.0.html</PackageLicenseUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<RepositoryUrl>https://github.com/cady-io/hangfire-ravendb</RepositoryUrl>
|
|
<RuntimeIdentifiers>win10-x64</RuntimeIdentifiers>
|
|
<GenerateAssemblyConfigurationAttribute>false</GenerateAssemblyConfigurationAttribute>
|
|
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
|
|
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="App.config" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Hangfire.Raven\Hangfire.Raven.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.ComponentModel.Primitives" Version="4.3.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">
|
|
<Reference Include="System" />
|
|
<Reference Include="Microsoft.CSharp" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|