Skip to content

Commit 6855136

Browse files
Bump packages, update CI to dotnet 8 (#62)
1 parent 012a70b commit 6855136

9 files changed

Lines changed: 20 additions & 22 deletions

File tree

.github/workflows/package.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
uses: tenhaus/get-release-or-tag@v2
2020

2121
- name: Package | Setup
22-
uses: actions/setup-dotnet@v1
22+
uses: actions/setup-dotnet@v3
2323
with:
24-
dotnet-version: 6.0.x
25-
include-prerelease: true
24+
dotnet-version: 8.0.x
25+
dotnet-quality: 'preview'
2626

2727
- name: Package | Publish
2828
run: dotnet pack -c Release -o ./pack /p:Version=$VERSION $PROJECT

.github/workflows/tests.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,10 @@ jobs:
1818
uses: actions/checkout@v2
1919

2020
- name: Tests | Setup
21-
uses: actions/setup-dotnet@v1
21+
uses: actions/setup-dotnet@v3
2222
with:
23-
dotnet-version: 6.0.x
24-
include-prerelease: true
25-
env:
26-
NUGET_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
dotnet-version: 8.0.x
24+
dotnet-quality: 'preview'
2725

2826
- name: Tests
2927
run: dotnet test /p:CollectCoverage=true /p:CoverletOutputFormat=lcov

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 AppAny
3+
Copyright (c) 2023 AppAny
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

src/AppAny.Quartz.EntityFrameworkCore.Migrations.MySql/AppAny.Quartz.EntityFrameworkCore.Migrations.MySql.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
55
<Nullable>enable</Nullable>
6-
<LangVersion>10</LangVersion>
6+
<LangVersion>12</LangVersion>
77
<EmbedUntrackedSources>true</EmbedUntrackedSources>
88
<IncludeSymbols>true</IncludeSymbols>
99
<PublishRepositoryUrl>true</PublishRepositoryUrl>

src/AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL/AppAny.Quartz.EntityFrameworkCore.Migrations.PostgreSQL.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
55
<Nullable>enable</Nullable>
6-
<LangVersion>10</LangVersion>
6+
<LangVersion>12</LangVersion>
77
<EmbedUntrackedSources>true</EmbedUntrackedSources>
88
<IncludeSymbols>true</IncludeSymbols>
99
<PublishRepositoryUrl>true</PublishRepositoryUrl>
@@ -15,7 +15,7 @@
1515
<PackageProjectUrl>https://github.com/appany/AppAny.Quartz.EntityFrameworkCore.Migrations</PackageProjectUrl>
1616
<PackageIcon>logo.png</PackageIcon>
1717
<PackageLicenseFile>LICENSE</PackageLicenseFile>
18-
<Copyright>Copyright ©2021 AppAny</Copyright>
18+
<Copyright>Copyright ©2023 AppAny</Copyright>
1919
<Authors>sergeyshaykhullin</Authors>
2020
<Description>EntityFrameworkCore PostgreSQL migrations for Quartz.NET</Description>
2121
<PackageTags>.NET Core;ASP.NET Core;EntityFrameworkCore;Quartz.NET;PostgreSQL</PackageTags>

src/AppAny.Quartz.EntityFrameworkCore.Migrations.SQLite/AppAny.Quartz.EntityFrameworkCore.Migrations.SQLite.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7-
<LangVersion>10</LangVersion>
7+
<LangVersion>12</LangVersion>
88
<EmbedUntrackedSources>true</EmbedUntrackedSources>
99
<IncludeSymbols>true</IncludeSymbols>
1010
<PublishRepositoryUrl>true</PublishRepositoryUrl>

src/AppAny.Quartz.EntityFrameworkCore.Migrations.SqlServer/AppAny.Quartz.EntityFrameworkCore.Migrations.SqlServer.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
55
<Nullable>enable</Nullable>
6-
<LangVersion>10</LangVersion>
6+
<LangVersion>12</LangVersion>
77
<EmbedUntrackedSources>true</EmbedUntrackedSources>
88
<IncludeSymbols>true</IncludeSymbols>
99
<PublishRepositoryUrl>true</PublishRepositoryUrl>
@@ -16,7 +16,7 @@
1616
<PackageProjectUrl>https://github.com/appany/AppAny.Quartz.EntityFrameworkCore.Migrations</PackageProjectUrl>
1717
<PackageIcon>logo.png</PackageIcon>
1818
<PackageLicenseFile>LICENSE</PackageLicenseFile>
19-
<Copyright>Copyright ©2021 AppAny</Copyright>
19+
<Copyright>Copyright ©2023 AppAny</Copyright>
2020
<Authors>sergeyshaykhullin</Authors>
2121
<Description>EntityFrameworkCore SQL migrations for Quartz.NET</Description>
2222
<PackageTags>.NET Core;ASP.NET Core;EntityFrameworkCore;Quartz.NET;SqlServer</PackageTags>

src/AppAny.Quartz.EntityFrameworkCore.Migrations/AppAny.Quartz.EntityFrameworkCore.Migrations.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<PropertyGroup>
44
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
55
<Nullable>enable</Nullable>
6-
<LangVersion>10</LangVersion>
6+
<LangVersion>12</LangVersion>
77
<EmbedUntrackedSources>true</EmbedUntrackedSources>
88
<IncludeSymbols>true</IncludeSymbols>
99
<PublishRepositoryUrl>true</PublishRepositoryUrl>
@@ -15,7 +15,7 @@
1515
<PackageProjectUrl>https://github.com/appany/AppAny.Quartz.EntityFrameworkCore.Migrations</PackageProjectUrl>
1616
<PackageIcon>logo.png</PackageIcon>
1717
<PackageLicenseFile>LICENSE</PackageLicenseFile>
18-
<Copyright>Copyright ©2021 AppAny</Copyright>
18+
<Copyright>Copyright ©2023 AppAny</Copyright>
1919
<Authors>sergeyshaykhullin,ZaoralJ</Authors>
2020
<Description>EntityFrameworkCore migrations for Quartz.NET</Description>
2121
<PackageTags>.NET Core;ASP.NET Core;EntityFrameworkCore;Quartz.NET</PackageTags>

tests/AppAny.Quartz.EntityFrameworkCore.Migrations.Tests/AppAny.Quartz.EntityFrameworkCore.Migrations.Tests.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
</ItemGroup>
2222

2323
<ItemGroup Label="xUnit">
24-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.7.2" />
24+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
2525
<PackageReference Include="MySql.Data" Version="8.2.0" />
26-
<PackageReference Include="Quartz" Version="3.7.0" />
27-
<PackageReference Include="Quartz.Serialization.Json" Version="3.7.0" />
26+
<PackageReference Include="Quartz" Version="3.8.0" />
27+
<PackageReference Include="Quartz.Serialization.Json" Version="3.8.0" />
2828
<PackageReference Include="TestEnvironment.Docker.Containers.Postgres" Version="2.1.6" />
2929
<PackageReference Include="TestEnvironment.Docker.Containers.Mssql" Version="2.1.7" />
30-
<PackageReference Include="xunit" Version="2.5.3" />
31-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3">
30+
<PackageReference Include="xunit" Version="2.6.5" />
31+
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6">
3232
<PrivateAssets>all</PrivateAssets>
3333
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
3434
</PackageReference>

0 commit comments

Comments
 (0)