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.1 (#19) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [Sentry.AspNetCore](https://sentry.io/) ([source](https://github.com/getsentry/sentry-dotnet)) | nuget | patch | `5.1.0` -> `5.1.1` | --- ### Release Notes <details> <summary>getsentry/sentry-dotnet (Sentry.AspNetCore)</summary> ### [`v5.1.1`](https://github.com/getsentry/sentry-dotnet/blob/HEAD/CHANGELOG.md#511) [Compare Source](https://github.com/getsentry/sentry-dotnet/compare/5.1.0...5.1.1) ##### Fixes - Emit transaction.data inside contexts.trace.data ([#&#8203;3936](https://github.com/getsentry/sentry-dotnet/pull/3936)) - Native SIGSEGV errors resulting from managed NullReferenceExceptions are now suppressed on Android ([#&#8203;3903](https://github.com/getsentry/sentry-dotnet/pull/3903)) - OTel activities that are marked as not recorded are no longer sent to Sentry ([#&#8203;3890](https://github.com/getsentry/sentry-dotnet/pull/3890)) - Fixed envelopes with oversized attachments getting stuck in \__processing ([#&#8203;3938](https://github.com/getsentry/sentry-dotnet/pull/3938)) - OperatingSystem will now return macOS as OS name instead of 'Darwin' as well as the proper version. ([#&#8203;2710](https://github.com/getsentry/sentry-dotnet/pull/3956)) - Ignore null value on CocoaScopeObserver.SetTag ([#&#8203;3948](https://github.com/getsentry/sentry-dotnet/pull/3948)) </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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjYuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2Ni4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJLaW5kL1Jlbm92YXRlIl19--> Reviewed-on: https://c.csw.im/cswimr/LookingGlass/pulls/19 Co-authored-by: Renovate <renovate@csw.im> Co-committed-by: Renovate <renovate@csw.im>
2025-02-13 17:53:01 -05:00
<PackageReference Include="Sentry.AspNetCore" Version="5.1.1" />
2025-01-29 18:09:21 +00:00
<PackageReference Include="Swashbuckle.AspNetCore" Version="7.2.0" />
</ItemGroup>
</Project>