Browse Source

Bumped .NET Core version to 3.1

flabbet 5 years ago
parent
commit
f6b9d139d4

+ 1 - 1
PixiEditor/PixiEditor.csproj

@@ -2,7 +2,7 @@
 
   <PropertyGroup>
     <OutputType>WinExe</OutputType>
-    <TargetFramework>netcoreapp3.0</TargetFramework>
+    <TargetFramework>netcoreapp3.1</TargetFramework>
     <UseWPF>true</UseWPF>
     <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
     <AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>

+ 1 - 1
PixiEditorTests/ModelsTests/ImageManipulationTests/BitmapUtilsTests.cs

@@ -91,7 +91,7 @@ namespace PixiEditorTests.ModelsTests.ImageManipulationTests
             Assert.Single(colors.Where(x=> x == Colors.Green));
             Assert.Single(colors.Where(x=> x == Colors.Red));
             Assert.Equal(6, colors.Count(x => x.A == 0)); //6 because layer is 4 pixels,
-                                                                                    //2 * 4 = 8, 2 other color pixels, so 8 - 2 = 6
+                                                          //2 * 4 = 8, 2 other color pixels, so 8 - 2 = 6
         }
 
     }

+ 1 - 1
PixiEditorTests/PixiEditorTests.csproj

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