[repo] Remove .NET 7 target (#5795)
Co-authored-by: Mikel Blanchard <mblanchard@macrosssoftware.com>
This commit is contained in:
parent
456cd26a20
commit
c483222ea5
|
|
@ -24,7 +24,7 @@ on:
|
|||
required: false
|
||||
type: string
|
||||
tfm-list:
|
||||
default: '[ "net462", "net6.0", "net7.0", "net8.0" ]'
|
||||
default: '[ "net462", "net6.0", "net8.0" ]'
|
||||
required: false
|
||||
type: string
|
||||
|
||||
|
|
|
|||
|
|
@ -111,7 +111,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
version: [ net6.0, net7.0, net8.0 ]
|
||||
version: [ net6.0, net8.0 ]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Run OTLP Exporter docker compose
|
||||
|
|
@ -129,7 +129,7 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
version: [ net6.0, net7.0 ]
|
||||
version: [ net6.0 ]
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Run W3C Trace Context docker compose
|
||||
|
|
|
|||
|
|
@ -100,9 +100,6 @@
|
|||
<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
|
||||
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="6.0.31" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
|
||||
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="7.0.20" />
|
||||
</ItemGroup>
|
||||
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
|
||||
<PackageVersion Include="Microsoft.AspNetCore.TestHost" Version="8.0.6" />
|
||||
</ItemGroup>
|
||||
|
|
|
|||
|
|
@ -32,7 +32,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{7CB2F02E
|
|||
Directory.Packages.props = Directory.Packages.props
|
||||
build\docfx.cmd = build\docfx.cmd
|
||||
build\docker-compose.net6.0.yml = build\docker-compose.net6.0.yml
|
||||
build\docker-compose.net7.0.yml = build\docker-compose.net7.0.yml
|
||||
build\docker-compose.net8.0.yml = build\docker-compose.net8.0.yml
|
||||
build\GlobalAttrExclusions.txt = build\GlobalAttrExclusions.txt
|
||||
build\opentelemetry-icon-color.png = build\opentelemetry-icon-color.png
|
||||
|
|
|
|||
|
|
@ -31,13 +31,13 @@
|
|||
<TargetFrameworksForPrometheusAspNetCore>net8.0;net6.0</TargetFrameworksForPrometheusAspNetCore>
|
||||
|
||||
<!-- non-production TFMs -->
|
||||
<TargetFrameworksForAspNetCoreTests>net8.0;net7.0;net6.0</TargetFrameworksForAspNetCoreTests>
|
||||
<TargetFrameworksForAspNetCoreTests>net8.0;net6.0</TargetFrameworksForAspNetCoreTests>
|
||||
<TargetFrameworksForAotCompatibilityTests>net8.0</TargetFrameworksForAotCompatibilityTests>
|
||||
<TargetFrameworksForDocs>net8.0;net7.0;net6.0</TargetFrameworksForDocs>
|
||||
<TargetFrameworksForDocs>net8.0;net6.0</TargetFrameworksForDocs>
|
||||
<TargetFrameworksForDocs Condition="$(OS) == 'Windows_NT' And '$(UsingMicrosoftNETSdkWeb)' != 'True'">
|
||||
$(TargetFrameworksForDocs);$(NetFrameworkSupportedVersions)
|
||||
</TargetFrameworksForDocs>
|
||||
<TargetFrameworksForTests>net8.0;net7.0;net6.0</TargetFrameworksForTests>
|
||||
<TargetFrameworksForTests>net8.0;net6.0</TargetFrameworksForTests>
|
||||
<TargetFrameworksForTests Condition="$(OS) == 'Windows_NT'">
|
||||
$(TargetFrameworksForTests);$(NetFrameworkMinimumSupportedVersion)
|
||||
</TargetFrameworksForTests>
|
||||
|
|
|
|||
|
|
@ -1,9 +0,0 @@
|
|||
version: '3.7'
|
||||
|
||||
services:
|
||||
tests:
|
||||
build:
|
||||
args:
|
||||
PUBLISH_FRAMEWORK: net7.0
|
||||
TEST_SDK_VERSION: "7.0"
|
||||
BUILD_SDK_VERSION: "8.0"
|
||||
Loading…
Reference in New Issue