Skip to content

Commit c9f5b0d

Browse files
committed
Updated to .NET6
1 parent d691f3e commit c9f5b0d

File tree

6 files changed

+12
-10
lines changed

6 files changed

+12
-10
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ $RECYCLE.BIN/
150150
# Mac crap
151151
.DS_Store
152152

153-
src/.vs
153+
.vs
154154

155155
# Cake Build
156156
/tools

src/Cofoundry.Plugins.BackgroundTasks.Hangfire.sln renamed to Cofoundry.Plugins.BackgroundTasks.Hangfire.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
44
VisualStudioVersion = 15.0.26430.13
55
MinimumVisualStudioVersion = 10.0.40219.1
6-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Cofoundry.Plugins.BackgroundTasks.Hangfire", "Cofoundry.Plugins.BackgroundTasks.Hangfire\Cofoundry.Plugins.BackgroundTasks.Hangfire.csproj", "{962BB845-1E06-4775-9C29-32E11B257603}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Cofoundry.Plugins.BackgroundTasks.Hangfire", "src\Cofoundry.Plugins.BackgroundTasks.Hangfire\Cofoundry.Plugins.BackgroundTasks.Hangfire.csproj", "{962BB845-1E06-4775-9C29-32E11B257603}"
77
EndProject
88
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "samples", "samples", "{D4929788-4924-4E4A-927B-1E914C835AF1}"
99
EndProject
10-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HangfireSample", "HangfireSample\HangfireSample.csproj", "{0661510F-9EB5-4688-9934-DA72F90791A6}"
10+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "HangfireSample", "src\HangfireSample\HangfireSample.csproj", "{0661510F-9EB5-4688-9934-DA72F90791A6}"
1111
EndProject
1212
Global
1313
GlobalSection(SolutionConfigurationPlatforms) = preSolution
File renamed without changes.

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
version: '{build}'
2-
image: Visual Studio 2019
2+
image: Visual Studio 2022
33
build_script:
44
- cmd: PowerShell .\build.ps1 --PushPackages="true"
55
test: off
Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
56

6-
<PackageId>Cofoundry.Plugins.BackgroundTasks.Hangfire</PackageId>
7+
<PackageId>Cofoundry.Plugins.BackgroundTasks.Hangfire</PackageId>
78
<Description>Hangfire implementation of Cofoundry.Core.BackgroundTasks.</Description>
89
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
910
<PackageTags>Cofoundry Hangfire Plugin BackgroundTasks</PackageTags>
@@ -15,7 +16,7 @@
1516
</PropertyGroup>
1617

1718
<ItemGroup>
18-
<PackageReference Include="Cofoundry.Web" Version="0.10.0" />
19-
<PackageReference Include="Hangfire" Version="1.7.28" />
19+
<PackageReference Include="Cofoundry.Web" Version="0.10.4-ci0006" />
20+
<PackageReference Include="Hangfire" Version="1.7.30" />
2021
</ItemGroup>
2122
</Project>

src/HangfireSample/HangfireSample.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

33
<PropertyGroup>
4-
<TargetFramework>netcoreapp3.1</TargetFramework>
4+
<TargetFramework>net6.0</TargetFramework>
5+
<ImplicitUsings>enable</ImplicitUsings>
56
<MvcRazorExcludeViewFilesFromPublish>false</MvcRazorExcludeViewFilesFromPublish>
67
<MvcRazorExcludeRefAssembliesFromPublish>false</MvcRazorExcludeRefAssembliesFromPublish>
78
</PropertyGroup>
89

910
<ItemGroup>
10-
<PackageReference Include="Cofoundry.Web.Admin" Version="0.10.0" />
11+
<PackageReference Include="Cofoundry.Web.Admin" Version="0.10.4-ci0006" />
1112
</ItemGroup>
1213

1314
<ItemGroup>

0 commit comments

Comments
 (0)