From a6f6978b875576020c4f466703553ffe3d8cd96a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20P=C3=B6lz?=
<38893694+Flash0ver@users.noreply.github.com>
Date: Wed, 4 Feb 2026 21:38:56 +0100
Subject: [PATCH 1/3] style: file nesting
---
src/Sentry/Sentry.csproj | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/src/Sentry/Sentry.csproj b/src/Sentry/Sentry.csproj
index a2b75db0ae..721c4a9b65 100644
--- a/src/Sentry/Sentry.csproj
+++ b/src/Sentry/Sentry.csproj
@@ -184,6 +184,12 @@
+
+
+ MeasurementUnit.cs
+
+
+
Date: Tue, 10 Feb 2026 21:44:37 +0100
Subject: [PATCH 2/3] style: more file nesting
---
.../Sentry.Samples.Aws.Lambda.AspNetCoreServer.csproj | 4 ----
.../Sentry.Android.AssemblyReader.csproj | 4 +++-
src/Sentry.Serilog/Sentry.Serilog.csproj | 6 ++++++
src/Sentry/Sentry.csproj | 6 ++++++
.../Sentry.AspNetCore.Tests.csproj | 6 ++++++
test/Sentry.Maui.Tests/Sentry.Maui.Tests.csproj | 9 +++++++++
test/Sentry.Serilog.Tests/Sentry.Serilog.Tests.csproj | 6 ++++++
test/Sentry.Tests/Sentry.Tests.csproj | 3 +++
8 files changed, 39 insertions(+), 5 deletions(-)
diff --git a/samples/Sentry.Samples.Aws.Lambda.AspNetCoreServer/Sentry.Samples.Aws.Lambda.AspNetCoreServer.csproj b/samples/Sentry.Samples.Aws.Lambda.AspNetCoreServer/Sentry.Samples.Aws.Lambda.AspNetCoreServer.csproj
index c9150b1b76..fe9b9dc377 100644
--- a/samples/Sentry.Samples.Aws.Lambda.AspNetCoreServer/Sentry.Samples.Aws.Lambda.AspNetCoreServer.csproj
+++ b/samples/Sentry.Samples.Aws.Lambda.AspNetCoreServer/Sentry.Samples.Aws.Lambda.AspNetCoreServer.csproj
@@ -10,10 +10,6 @@
-
-
-
-
sentry-sdks
sentry-dotnet
diff --git a/src/Sentry.Android.AssemblyReader/Sentry.Android.AssemblyReader.csproj b/src/Sentry.Android.AssemblyReader/Sentry.Android.AssemblyReader.csproj
index fa94fec130..2630fb81c7 100644
--- a/src/Sentry.Android.AssemblyReader/Sentry.Android.AssemblyReader.csproj
+++ b/src/Sentry.Android.AssemblyReader/Sentry.Android.AssemblyReader.csproj
@@ -27,7 +27,9 @@
-
+
+ StoreReader.cs
+
diff --git a/src/Sentry.Serilog/Sentry.Serilog.csproj b/src/Sentry.Serilog/Sentry.Serilog.csproj
index 60c27e77f7..c0f1f9dd10 100644
--- a/src/Sentry.Serilog/Sentry.Serilog.csproj
+++ b/src/Sentry.Serilog/Sentry.Serilog.csproj
@@ -39,4 +39,10 @@
+
+
+ SentrySink.cs
+
+
+
diff --git a/src/Sentry/Sentry.csproj b/src/Sentry/Sentry.csproj
index 721c4a9b65..ec4a8fd75a 100644
--- a/src/Sentry/Sentry.csproj
+++ b/src/Sentry/Sentry.csproj
@@ -185,9 +185,15 @@
+
+ FrameworkInfo.cs
+
MeasurementUnit.cs
+
+ SentryStructuredLogger.cs
+
diff --git a/test/Sentry.AspNetCore.Tests/Sentry.AspNetCore.Tests.csproj b/test/Sentry.AspNetCore.Tests/Sentry.AspNetCore.Tests.csproj
index 77c4d3735e..9c19ad2df0 100644
--- a/test/Sentry.AspNetCore.Tests/Sentry.AspNetCore.Tests.csproj
+++ b/test/Sentry.AspNetCore.Tests/Sentry.AspNetCore.Tests.csproj
@@ -16,4 +16,10 @@
+
+
+ IntegrationsTests.cs
+
+
+
diff --git a/test/Sentry.Maui.Tests/Sentry.Maui.Tests.csproj b/test/Sentry.Maui.Tests/Sentry.Maui.Tests.csproj
index 45ba512c3f..18c443a29d 100644
--- a/test/Sentry.Maui.Tests/Sentry.Maui.Tests.csproj
+++ b/test/Sentry.Maui.Tests/Sentry.Maui.Tests.csproj
@@ -21,4 +21,13 @@
+
+
+ MauiEventsBinderTests.cs
+
+
+ SentryMauiAppBuilderExtensionsTests.cs
+
+
+
diff --git a/test/Sentry.Serilog.Tests/Sentry.Serilog.Tests.csproj b/test/Sentry.Serilog.Tests/Sentry.Serilog.Tests.csproj
index c4ed3357bb..ea7b7b84c3 100644
--- a/test/Sentry.Serilog.Tests/Sentry.Serilog.Tests.csproj
+++ b/test/Sentry.Serilog.Tests/Sentry.Serilog.Tests.csproj
@@ -26,4 +26,10 @@
+
+
+ SentrySinkTests.cs
+
+
+
diff --git a/test/Sentry.Tests/Sentry.Tests.csproj b/test/Sentry.Tests/Sentry.Tests.csproj
index 1a6e4f3ef8..e656c29ec8 100644
--- a/test/Sentry.Tests/Sentry.Tests.csproj
+++ b/test/Sentry.Tests/Sentry.Tests.csproj
@@ -39,6 +39,9 @@
$([System.String]::Copy('%(FileName)').Split('.')[0])
HintTests.cs
+
+ SentryStructuredLoggerTests.cs
+
From 74bd2b863a5521354035ae40b420950ee5685924 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20P=C3=B6lz?=
<38893694+Flash0ver@users.noreply.github.com>
Date: Tue, 10 Feb 2026 21:53:24 +0100
Subject: [PATCH 3/3] style: even more file nesting
---
src/Sentry/Sentry.csproj | 6 ++++++
test/Sentry.Tests/Sentry.Tests.csproj | 3 +++
2 files changed, 9 insertions(+)
diff --git a/src/Sentry/Sentry.csproj b/src/Sentry/Sentry.csproj
index ec4a8fd75a..b4b6e3be73 100644
--- a/src/Sentry/Sentry.csproj
+++ b/src/Sentry/Sentry.csproj
@@ -191,6 +191,12 @@
MeasurementUnit.cs
+
+ SentryMetric.cs
+
+
+ SentryMetricEmitter.cs
+
SentryStructuredLogger.cs
diff --git a/test/Sentry.Tests/Sentry.Tests.csproj b/test/Sentry.Tests/Sentry.Tests.csproj
index e656c29ec8..8e536bf1af 100644
--- a/test/Sentry.Tests/Sentry.Tests.csproj
+++ b/test/Sentry.Tests/Sentry.Tests.csproj
@@ -39,6 +39,9 @@
$([System.String]::Copy('%(FileName)').Split('.')[0])
HintTests.cs
+
+ SentryMetricEmitterTests.cs
+
SentryStructuredLoggerTests.cs