Skip to content

Commit e56eb1f

Browse files
committed
remove netstandard2.1 build
remove netstandard2.1 build; only test net472/net80
1 parent f43a758 commit e56eb1f

4 files changed

Lines changed: 5 additions & 73 deletions

File tree

CI/job_templates/build_drawing_libraries.yml

Lines changed: 0 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -31,26 +31,6 @@ jobs:
3131
- checkout: self
3232
displayName: Checkout IronSoftware.Drawing repository
3333
lfs: true
34-
- task: UseDotNet@2
35-
displayName: 'Install .Netcoreapp3.1 Core sdk'
36-
inputs:
37-
packageType: 'sdk'
38-
version: '3.x'
39-
- task: UseDotNet@2
40-
displayName: 'Install .NET5 sdk'
41-
inputs:
42-
packageType: 'sdk'
43-
version: '5.x'
44-
- task: UseDotNet@2
45-
displayName: 'Install .NET6 sdk'
46-
inputs:
47-
packageType: 'sdk'
48-
version: '6.x'
49-
- task: UseDotNet@2
50-
displayName: 'Install .NET7 sdk'
51-
inputs:
52-
packageType: 'sdk'
53-
version: '7.x'
5434
- task: UseDotNet@2
5535
displayName: 'Install .NET7 sdk'
5636
inputs:

CI/stage_templates/run_tests_on_pool.yml

Lines changed: 3 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -32,59 +32,11 @@ stages:
3232
framework: 'net472'
3333
architecture: ''
3434
buildConfiguration: $(Configuration)
35-
# Windows .NET Core x64 Tests
36-
- template: ../job_templates/test_drawing_libraries.yml
37-
parameters:
38-
name: UnitTest${{ parameters.OSPlatform }}netcore
39-
OSPlatform: ${{ parameters.OSPlatform }}
40-
framework: 'netcoreapp3.1'
41-
architecture: ''
42-
buildConfiguration: $(Configuration)
43-
# Windows .NET Core x86 Tests
44-
- template: ../job_templates/test_drawing_libraries.yml
45-
parameters:
46-
name: UnitTest${{ parameters.OSPlatform }}netcorex86
47-
OSPlatform: ${{ parameters.OSPlatform }}
48-
framework: 'netcoreapp3.1'
49-
architecture: '.x86'
50-
buildConfiguration: $(Configuration)
51-
# Windows .NET 6.0 x86 Tests
52-
- template: ../job_templates/test_drawing_libraries.yml
53-
parameters:
54-
name: UnitTest${{ parameters.OSPlatform }}net60x86
55-
OSPlatform: ${{ parameters.OSPlatform }}
56-
framework: 'net60'
57-
architecture: '.x86'
58-
buildConfiguration: $(Configuration)
59-
# Windows .NET 7.0 x86 Tests
60-
- template: ../job_templates/test_drawing_libraries.yml
61-
parameters:
62-
name: UnitTest${{ parameters.OSPlatform }}net70x86
63-
OSPlatform: ${{ parameters.OSPlatform }}
64-
framework: 'net70'
65-
architecture: '.x86'
66-
buildConfiguration: $(Configuration)
67-
# .NET 5.0 Tests
68-
- template: ../job_templates/test_drawing_libraries.yml
69-
parameters:
70-
name: UnitTest${{ parameters.OSPlatform }}net50
71-
OSPlatform: ${{ parameters.OSPlatform }}
72-
framework: 'net50'
73-
architecture: ''
74-
buildConfiguration: $(Configuration)
75-
# .NET 6.0 x64 Tests
76-
- template: ../job_templates/test_drawing_libraries.yml
77-
parameters:
78-
name: UnitTest${{ parameters.OSPlatform }}net60
79-
OSPlatform: ${{ parameters.OSPlatform }}
80-
framework: 'net60'
81-
architecture: ''
82-
buildConfiguration: $(Configuration)
83-
# .NET 7.0 x64 Tests
35+
# .NET 8.0 Tests
8436
- template: ../job_templates/test_drawing_libraries.yml
8537
parameters:
86-
name: UnitTest${{ parameters.OSPlatform }}net70
38+
name: UnitTest${{ parameters.OSPlatform }}net80
8739
OSPlatform: ${{ parameters.OSPlatform }}
88-
framework: 'net70'
40+
framework: 'net80'
8941
architecture: ''
9042
buildConfiguration: $(Configuration)

IronSoftware.Drawing/IronSoftware.Drawing.Common.Tests/IronSoftware.Drawing.Common.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>net472;netcoreapp3.1;net50;net60;net70</TargetFrameworks>
4+
<TargetFrameworks>net472;net80</TargetFrameworks>
55
<LangVersion>latest</LangVersion>
66
<CheckEolTargetFramework>false</CheckEolTargetFramework>
77
<IsPackable>false</IsPackable>

IronSoftware.Drawing/IronSoftware.Drawing.Common/IronSoftware.Drawing.Common.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<NoWarn>CS8002</NoWarn>
1313
<Platforms>AnyCPU</Platforms>
1414
<SignAssembly>true</SignAssembly>
15-
<TargetFrameworks>netstandard2.0;netstandard2.1;net60</TargetFrameworks>
15+
<TargetFrameworks>netstandard2.0;net60</TargetFrameworks>
1616
<TransformOnBuild>true</TransformOnBuild>
1717
</PropertyGroup>
1818

0 commit comments

Comments
 (0)