Migrated cuipod to .net 5.0

This commit is contained in:
Egidijus Lileika 2021-02-10 18:34:35 +02:00
parent 68dda5b2c6
commit b874921d4e
3 changed files with 4 additions and 2 deletions

2
.gitignore vendored
View File

@ -350,3 +350,5 @@ MigrationBackup/
.ionide/ .ionide/
CuipodExample/Properties/launchSettings.json CuipodExample/Properties/launchSettings.json
.vscode/

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk"> <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup> <PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework> <TargetFramework>net5.0</TargetFramework>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

View File

@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework> <TargetFramework>net5.0</TargetFramework>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>