Skip to content

Commit

Permalink
Remove 6.0 from tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejgordon committed Nov 20, 2024
1 parent a217192 commit ceec45c
Show file tree
Hide file tree
Showing 7 changed files with 111 additions and 114 deletions.
214 changes: 107 additions & 107 deletions src/profiler/Elastic.Apm.Profiler.Managed/integrations.yml

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
<IsPackable>false</IsPackable>
</PropertyGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ public IEnumerator<object[]> GetEnumerator()
{
// TODO: Add x64/x86 options. macOS and Linux do not support x86
yield return new object[] { "net8.0" };
yield return new object[] { "net6.0" };
}

IEnumerator IEnumerable.GetEnumerator() => GetEnumerator();
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
<IsPackable>false</IsPackable>
</PropertyGroup>

Expand Down
1 change: 0 additions & 1 deletion test/startuphook/Elastic.Apm.StartupHook.Sample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
This sample application is a default ASP.NET (Core) application
configured to run with

- `net6.0`
- `net8.0`

target frameworks that can be used to try out the [Elastic APM
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ public class StartupHookTests
// NOTE: We test the two latest supported LTS releases.
private static IEnumerable<(string TargetFramework, string RuntimeName, string Version, string ShortVersion)> GetDotNetFrameworkVersionInfos()
{
yield return ("net6.0", ".NET 6", "6.0.0.0", "60");
yield return ("net8.0", ".NET 8", "8.0.0.0", "80");
}

Expand Down

0 comments on commit ceec45c

Please sign in to comment.