Skip to content

Commit 4925972

Browse files
authored
Update the C# Telemetry Generator from .NET 6 to .NET 8 (#799)
This change updates the .NET telemetry generator from .NET 6 to .NET 8. The NuGet packages it produces continue to target .NET 4.7.2 (which supports the Visual Studio Toolkit). The motivation for this change is to migrate off .NET 6 before its LTS window closes. A while back, I updated the infrastructure so that .NET 8 is available in the automation and CI jobs. This change was verified by: - checking that the test suite passes - comparing the resultant generated code before and after the change, and ensuring they match
1 parent 2a55bce commit 4925972

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

telemetry/csharp/AwsToolkit.Telemetry.Events.Generator.Tests/AwsToolkit.Telemetry.Events.Generator.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-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFramework>net8.0</TargetFramework>
55

66
<IsPackable>false</IsPackable>
77

telemetry/csharp/AwsToolkit.Telemetry.Events.Generator/AwsToolkit.Telemetry.Events.Generator.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
5-
<TargetFramework>net6.0</TargetFramework>
5+
<TargetFramework>net8.0</TargetFramework>
66
<RootNamespace>Amazon.AwsToolkit.Telemetry.Events.Generator</RootNamespace>
77
<AssemblyName>Amazon.AwsToolkit.Telemetry.Events.Generator</AssemblyName>
88
<Authors>Amazon Web Services</Authors>

0 commit comments

Comments
 (0)