Skip to content

Commit

Permalink
Target net6.0 (#37)
Browse files Browse the repository at this point in the history
netcoreapp3.1 is out of support.
AArnott authored Jun 5, 2023
1 parent f5a44b4 commit e1713dd
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: Visual Studio 2019
image: Visual Studio 2022
version: 1.0.{build}
configuration: Release

@@ -15,5 +15,5 @@ build_script:
- cmd: dotnet publish src\PrivateGalleryCreator.csproj

artifacts:
- path: 'src\bin\$(configuration)\netcoreapp3.1\publish'
name: PrivateGalleryCreator
- path: 'src\bin\$(configuration)\net6.0\publish'
name: PrivateGalleryCreator
4 changes: 2 additions & 2 deletions src/PrivateGalleryCreator.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<UserSecretsId>dotnet-PrivateGalleryCreator-DD03A4CA-D07C-4F94-B819-AF0367356BBB</UserSecretsId>
<ApplicationIcon />
<OutputType>Exe</OutputType>
@@ -14,4 +14,4 @@
<DebugSymbols>false</DebugSymbols>
</PropertyGroup>

</Project>
</Project>

0 comments on commit e1713dd

Please sign in to comment.