Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@
<PackageReference Include="AWSSDK.Extensions.NETCore.Setup" Version="3.7.7" />
</ItemGroup>

<ItemGroup>
<Folder Include="Controllers" />
</ItemGroup>

<PropertyGroup Condition="'$(Configuration)' == 'Release'">
<SentryOrg>sentry-sdks</SentryOrg>
<SentryProject>sentry-dotnet</SentryProject>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
</ItemGroup>

<ItemGroup>
<Folder Include="ElfSharp\" />
<Compile Update="V2\StoreReader.Classes.cs">
<DependentUpon>StoreReader.cs</DependentUpon>
</Compile>
</ItemGroup>

</Project>
6 changes: 6 additions & 0 deletions src/Sentry.Serilog/Sentry.Serilog.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,10 @@
<InternalsVisibleTo Include="Sentry.Serilog.Tests" PublicKey="$(SentryPublicKey)" />
</ItemGroup>

<ItemGroup>
<Compile Update="SentrySink.Structured.cs">
<DependentUpon>SentrySink.cs</DependentUpon>
</Compile>
</ItemGroup>

</Project>
18 changes: 18 additions & 0 deletions src/Sentry/Sentry.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -184,6 +184,24 @@
<None Include="buildTransitive\Sentry.targets" Pack="true" PackagePath="build\Sentry.targets" />
</ItemGroup>

<ItemGroup>
<Compile Update="PlatformAbstractions\FrameworkInfo.NetFx.cs;PlatformAbstractions\FrameworkInfo.NetStandard.cs">
<DependentUpon>FrameworkInfo.cs</DependentUpon>
</Compile>
<Compile Update="MeasurementUnit.Duration.cs;MeasurementUnit.Fraction.cs;MeasurementUnit.Information.cs">
<DependentUpon>MeasurementUnit.cs</DependentUpon>
</Compile>
<Compile Update="SentryMetric.Factory.cs;SentryMetric.Generic.cs">
<DependentUpon>SentryMetric.cs</DependentUpon>
</Compile>
<Compile Update="SentryMetricEmitter.Counter.cs;SentryMetricEmitter.Distribution.cs;SentryMetricEmitter.Gauge.cs">
<DependentUpon>SentryMetricEmitter.cs</DependentUpon>
</Compile>
<Compile Update="SentryStructuredLogger.Format.cs">
<DependentUpon>SentryStructuredLogger.cs</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\Sentry.Compiler.Extensions\Sentry.Compiler.Extensions.csproj"
OutputItemType="Analyzer"
Expand Down
6 changes: 6 additions & 0 deletions test/Sentry.AspNetCore.Tests/Sentry.AspNetCore.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,10 @@
</None>
</ItemGroup>

<ItemGroup>
<Compile Update="IntegrationsTests.EventProcessor.cs">
<DependentUpon>IntegrationsTests.cs</DependentUpon>
</Compile>
</ItemGroup>

</Project>
9 changes: 9 additions & 0 deletions test/Sentry.Maui.Tests/Sentry.Maui.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,13 @@
<PackageReference Include="Microsoft.Maui.Controls" Version="$(MauiVersion)" />
</ItemGroup>

<ItemGroup>
<Compile Update="MauiEventsBinderTests.Application.cs;MauiEventsBinderTests.Element.cs;MauiEventsBinderTests.Page.cs;MauiEventsBinderTests.Shell.cs;MauiEventsBinderTests.VisualElement.cs;MauiEventsBinderTests.Window.cs">
<DependentUpon>MauiEventsBinderTests.cs</DependentUpon>
</Compile>
<Compile Update="SentryMauiAppBuilderExtensionsTests.Android.cs;SentryMauiAppBuilderExtensionsTests.Cocoa.cs">
<DependentUpon>SentryMauiAppBuilderExtensionsTests.cs</DependentUpon>
</Compile>
</ItemGroup>

</Project>
6 changes: 6 additions & 0 deletions test/Sentry.Serilog.Tests/Sentry.Serilog.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,10 @@
<Using Include="Microsoft.AspNetCore.Hosting" />
</ItemGroup>

<ItemGroup>
<Compile Update="SentrySinkTests.Structured.cs">
<DependentUpon>SentrySinkTests.cs</DependentUpon>
</Compile>
</ItemGroup>

</Project>
6 changes: 6 additions & 0 deletions test/Sentry.Tests/Sentry.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,12 @@
<ParentFile>$([System.String]::Copy('%(FileName)').Split('.')[0])</ParentFile>
<DependentUpon>HintTests.cs</DependentUpon>
</None>
<Compile Update="SentryMetricEmitterTests.Options.cs;SentryMetricEmitterTests.Types.cs;SentryMetricEmitterTests.Values.cs">
<DependentUpon>SentryMetricEmitterTests.cs</DependentUpon>
</Compile>
<Compile Update="SentryStructuredLoggerTests.Format.cs">
<DependentUpon>SentryStructuredLoggerTests.cs</DependentUpon>
</Compile>
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' != 'net48'">
Expand Down
Loading