1 files changed, 7 insertions, 2 deletions
diff --git a/MatrixContentFilter/MatrixContentFilter.csproj b/MatrixContentFilter/MatrixContentFilter.csproj
index ea0ddd1..1a26b13 100644
--- a/MatrixContentFilter/MatrixContentFilter.csproj
+++ b/MatrixContentFilter/MatrixContentFilter.csproj
@@ -2,7 +2,7 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
- <TargetFramework>net8.0</TargetFramework>
+ <TargetFramework>net9.0</TargetFramework>
<LangVersion>preview</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
@@ -22,7 +22,12 @@
</ItemGroup>
<ItemGroup>
- <PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
+ <PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.1" />
+ <PackageReference Include="OpenTelemetry.Exporter.Console" Version="1.9.0" />
+ <PackageReference Include="OpenTelemetry.Extensions.Hosting" Version="1.9.0" />
+ <PackageReference Include="OpenTelemetry.Instrumentation.AspNetCore" Version="1.9.0" />
+ <PackageReference Include="OpenTelemetry.Instrumentation.Http" Version="1.9.0" />
+ <PackageReference Include="OpenTelemetry.Instrumentation.Runtime" Version="1.9.0" />
</ItemGroup>
<ItemGroup>
<Content Include="appsettings*.json">
|