Skip to content

Commit cdbb4bc

Browse files
authored
target net9 on gcp (#4039)
1 parent ac4f837 commit cdbb4bc

File tree

5 files changed

+23
-3
lines changed

5 files changed

+23
-3
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## Unreleased
44

5+
### Fixes
6+
7+
- Target `net9.0` on Sentry.Google.Cloud.Functions to avoid conflict with Sentry.AspNetCore ([#4039](https://github.com/getsentry/sentry-dotnet/pull/4039))
8+
59
### Features
610

711
- Exception.HResult is now included in the mechanism data for all exceptions ([#4029](https://github.com/getsentry/sentry-dotnet/pull/4029))

src/Sentry.Google.Cloud.Functions/Sentry.Google.Cloud.Functions.csproj

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
55
<PackageTags>$(PackageTags);GCP;Google Cloud Functions</PackageTags>
66
<Description>Official Google Cloud Functions integration for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time.</Description>
77
</PropertyGroup>
@@ -14,7 +14,13 @@
1414
<ItemGroup>
1515
<ProjectReference Include="..\Sentry.AspNetCore\Sentry.AspNetCore.csproj" />
1616
<PackageReference Include="Google.Cloud.Functions.Hosting" Version="2.0.0" />
17+
</ItemGroup>
18+
19+
<ItemGroup Condition="'$(TargetFramework)' == 'net8.0'">
1720
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.0" />
1821
</ItemGroup>
22+
<ItemGroup Condition="'$(TargetFramework)' == 'net9.0'">
23+
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="9.0.0" />
24+
</ItemGroup>
1925

2026
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
namespace Google.Cloud.Functions.Framework
2+
{
3+
public class SentryStartup : Google.Cloud.Functions.Hosting.FunctionsStartup
4+
{
5+
public SentryStartup() { }
6+
public override void Configure(Microsoft.AspNetCore.Hosting.WebHostBuilderContext context, Microsoft.AspNetCore.Builder.IApplicationBuilder app) { }
7+
public override void ConfigureLogging(Microsoft.AspNetCore.Hosting.WebHostBuilderContext context, Microsoft.Extensions.Logging.ILoggingBuilder logging) { }
8+
public override void ConfigureServices(Microsoft.AspNetCore.Hosting.WebHostBuilderContext context, Microsoft.Extensions.DependencyInjection.IServiceCollection services) { }
9+
}
10+
}

test/Sentry.Google.Cloud.Functions.Tests/Sentry.Google.Cloud.Functions.Tests.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net8.0</TargetFramework>
4+
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>

test/Sentry.MauiTrimTest/Platforms/MacCatalyst/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using ObjCRuntime;
1+
using ObjCRuntime;
22
using UIKit;
33

44
namespace Sentry.MauiTrimTest;

0 commit comments

Comments
 (0)