Skip to content

Commit 3c81c21

Browse files
committed
Remove net462 target from test projects
This will also speed up tests since it halves the amount of tests to run. This was earlier used to test Windows Runtime Component code, but this has since been removed due to all the issues with #if conditions and since the testing didn't seem to add any extra safety.
1 parent 7a9255f commit 3c81c21

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

UnitsNet.Serialization.JsonNet.Tests/UnitsNet.Serialization.JsonNet.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp1.1;net462</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp1.1</TargetFrameworks>
55
<RootNamespace>UnitsNet.Serialization.JsonNet.Tests</RootNamespace>
66
<OutputPath>..\Artifacts\$(MSBuildProjectName)</OutputPath>
77
</PropertyGroup>

UnitsNet.Tests/UnitsNet.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>netcoreapp1.1;net462</TargetFrameworks>
4+
<TargetFrameworks>netcoreapp1.1</TargetFrameworks>
55
<RootNamespace>UnitsNet.Tests</RootNamespace>
66
<OutputPath>..\Artifacts\$(MSBuildProjectName)</OutputPath>
77
</PropertyGroup>

0 commit comments

Comments
 (0)