LookingGlass/LookingGlass.csproj

26 lines
1.1 KiB
XML
Raw Normal View History

2025-01-29 18:09:21 +00:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>LookingGlass</RootNamespace>
2025-01-29 18:22:15 +00:00
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
2025-01-29 18:09:21 +00:00
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="Util\SwaggerTheme\modern.custom.css" />
<PackageReference Include="AspNetCore.SwaggerUI.Themes" Version="2.0.0" />
2025-01-29 21:04:56 +00:00
<PackageReference Include="EnumStringValues" Version="4.0.2" />
2025-01-29 18:09:21 +00:00
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="9.0.1" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.1" />
2025-01-29 21:04:56 +00:00
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
2025-01-29 18:09:21 +00:00
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="9.0.3" />
chore(deps): update dependency sentry.aspnetcore to 5.1.0 (#15) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [Sentry.AspNetCore](https://sentry.io/) ([source](https://github.com/getsentry/sentry-dotnet)) | nuget | minor | `5.0.1` -> `5.1.0` | --- ### Release Notes <details> <summary>getsentry/sentry-dotnet (Sentry.AspNetCore)</summary> ### [`v5.1.0`](https://github.com/getsentry/sentry-dotnet/blob/HEAD/CHANGELOG.md#510) [Compare Source](https://github.com/getsentry/sentry-dotnet/compare/5.0.1...5.1.0) ##### Significant change in behavior - The User.IpAddress is now only set to `{{auto}}` when `SendDefaultPii` is enabled. This change gives you control over IP address collection directly on the client ([#&#8203;3893](https://github.com/getsentry/sentry-dotnet/pull/3893)) ##### Features - .NET on iOS: Add experimental EnableAppHangTrackingV2 configuration flag to the options binding SDK ([#&#8203;3877](https://github.com/getsentry/sentry-dotnet/pull/3877)) - Added `SentryOptions.DisableSentryHttpMessageHandler`. Useful if you're using `OpenTelemetry.Instrumentation.Http` and ending up with duplicate spans. ([#&#8203;3879](https://github.com/getsentry/sentry-dotnet/pull/3879)) ##### Fixes - Prevent Native EXC_BAD_ACCESS signal errors from being captured when managed NullRefrenceExceptions occur ([#&#8203;3909](https://github.com/getsentry/sentry-dotnet/pull/3909)) - Fixed duplicate SentryMauiEventProcessors ([#&#8203;3905](https://github.com/getsentry/sentry-dotnet/pull/3905)) - Fixed invalid string.Format index in Debug logs for the DiagnosticSource integration ([#&#8203;3923](https://github.com/getsentry/sentry-dotnet/pull/3923)) ##### Dependencies - Bump Native SDK from v0.7.17 to v0.7.20 ([#&#8203;3891](https://github.com/getsentry/sentry-dotnet/pull/3891), [#&#8203;3908](https://github.com/getsentry/sentry-dotnet/pull/3908), [#&#8203;3929](https://github.com/getsentry/sentry-dotnet/pull/3929)) - [changelog](https://github.com/getsentry/sentry-native/blob/master/CHANGELOG.md#0720) - [diff](https://github.com/getsentry/sentry-native/compare/0.7.17...0.7.20) - Bump Java SDK from v7.20.0 to v7.20.1 ([#&#8203;3907](https://github.com/getsentry/sentry-dotnet/pull/3907)) - [changelog](https://github.com/getsentry/sentry-java/blob/main/CHANGELOG.md#7201) - [diff](https://github.com/getsentry/sentry-java/compare/7.20.0...7.20.1) - Bump CLI from v2.40.0 to v2.41.1 ([#&#8203;3910](https://github.com/getsentry/sentry-dotnet/pull/3910)) - [changelog](https://github.com/getsentry/sentry-cli/blob/master/CHANGELOG.md#2411) - [diff](https://github.com/getsentry/sentry-cli/compare/2.40.0...2.41.1) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNTYuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE1Ni4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19--> Reviewed-on: https://www.coastalcommits.com/cswimr/LookingGlass/pulls/15 Co-authored-by: Renovate <renovate@coastalcommits.com> Co-committed-by: Renovate <renovate@coastalcommits.com>
2025-02-07 23:52:05 -05:00
<PackageReference Include="Sentry.AspNetCore" Version="5.1.0" />
2025-01-29 18:09:21 +00:00
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.2.0" />
</ItemGroup>
</Project>