Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Hangfire.Unity.sln
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ VisualStudioVersion = 15.0.27520.0
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hangfire.Unity", "src\Hangfire.Unity\Hangfire.Unity.csproj", "{05791F34-A9B8-42F3-A18B-4CDA7AF43307}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hangfire.Unity.Test", "test\Hangfire.Unity.Test.csproj", "{E5F55170-2896-4479-9278-B07540D3310C}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Hangfire.Unity.Test", "test\Hangfire.Unity.Test\Hangfire.Unity.Test.csproj", "{E5F55170-2896-4479-9278-B07540D3310C}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
14 changes: 8 additions & 6 deletions src/Hangfire.Unity/Hangfire.Unity.csproj
Original file line number Diff line number Diff line change
@@ -1,25 +1,27 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<Version>3.0.0</Version>
<Version>5.0.0</Version>
<Title>Hangfire Unity Job activator</Title>
<PackageId>Hangfire.Unity</PackageId>
<PackageId>Hangfire.Unity5</PackageId>
<PackageProjectUrl>http://hangfire.io/</PackageProjectUrl>
<PackageLicenseUrl>https://raw.github.com/HangfireIO/Hangfire/master/LICENSE.md</PackageLicenseUrl>
<PackageReleaseNotes>https://github.com/HangfireIO/Hangfire/releases</PackageReleaseNotes>
<PackageTags>Hangfire Unity IoC</PackageTags>
<Copyright>Copyright © 2014-2018 Vincent Lainé and all contributors</Copyright>
<Copyright>Copyright © 2014-2019 Vincent Lainé and all contributors</Copyright>
<Authors>Vincent Lainé</Authors>
<Description>Unity IoC Container support for Hangfire (background job system for ASP.NET applications).</Description>
</PropertyGroup>

<PropertyGroup>
<TargetFrameworks>netstandard1.3;net45</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net461</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Product>Hangfire.Unity5</Product>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="HangFire.Core" Version="1.6.17" />
<PackageReference Include="Unity.Container" Version="5.8.4" />
<PackageReference Include="HangFire.Core" Version="1.7.4" />
<PackageReference Include="Unity.Container" Version="5.11.1" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion test/Hangfire.Unity.Test/Hangfire.Unity.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\src\Hangfire.Unity\Hangfire.Unity.csproj" />
<ProjectReference Include="..\..\src\Hangfire.Unity\Hangfire.Unity.csproj" />
</ItemGroup>

</Project>