Skip to content

Commit

Permalink
Updated workflow link, upgraded tests to NET 6, upgraded ImageSharp
Browse files Browse the repository at this point in the history
  • Loading branch information
robertvazan committed Jul 21, 2024
1 parent b2298c0 commit e80a6c1
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ on:
workflow_dispatch:
jobs:
build:
uses: robertvazan/project-config/.github/workflows/net-build.yml@master
uses: robertvazan/rvscaffold/.github/workflows/net-build.yml@master
with:
dotnet-version: 5.0.x
dotnet-version: 6.0
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ name: release
on: workflow_dispatch
jobs:
release:
uses: robertvazan/project-config/.github/workflows/net-release.yml@master
uses: robertvazan/rvscaffold/.github/workflows/net-release.yml@master
with:
dotnet-version: 5.0.x
dotnet-version: 6.0
secrets:
nuget-token: ${{ secrets.NUGET_TOKEN }}
2 changes: 1 addition & 1 deletion COPYRIGHT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Robert Važan's SourceAFIS for .NET
https://sourceafis.machinezoo.com/net
Copyright 2009-2023 Robert Važan and contributors
Copyright 2009-2024 Robert Važan and contributors
Distributed under Apache License 2.0.
5 changes: 4 additions & 1 deletion SourceAFIS.Tests/SourceAFIS.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
<!-- Generated by scripts/configure.py -->
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<LangVersion>10</LangVersion>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<IsPackable>false</IsPackable>
<RootNamespace>SourceAFIS</RootNamespace>
</PropertyGroup>
Expand Down
3 changes: 3 additions & 0 deletions SourceAFIS/SourceAFIS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<CheckEolTargetFramework>false</CheckEolTargetFramework>
<LangVersion>10</LangVersion>
<EnableNETAnalyzers>true</EnableNETAnalyzers>
<Version>3.14.0</Version>
<Title>SourceAFIS for .NET</Title>
<Authors>robertvazan</Authors>
Expand Down
2 changes: 1 addition & 1 deletion scripts/configure.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ def documentation_links(self):
def dependencies(self):
yield from super().dependencies()
yield self.use('Dahomey.Cbor:1.16.1')
yield self.use('SixLabors.ImageSharp:2.1.3')
yield self.use('SixLabors.ImageSharp:2.1.8')

Project().generate()

0 comments on commit e80a6c1

Please sign in to comment.