w4c-workflows-api/w4c-workflows-api.csproj

39 lines
1.9 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net11.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>w4c_workflows</RootNamespace>
<AssemblyName>w4c-workflows-api</AssemblyName>
</PropertyGroup>
2026-09-01 16:41:39 +00:00
<!-- Exclude the test project directory from default SDK globbing (tests live
inside this repo as a sibling directory, not a project reference). -->
<ItemGroup>
<Compile Remove="w4c-workflows-api.Tests/**" />
<None Remove="w4c-workflows-api.Tests/**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="11.0.0-preview.6.26359.118" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="11.0.0-preview.6.26359.118" />
<!-- Roslyn 5.0.0 matches the transitive pin from Microsoft.EntityFrameworkCore.Design
10.0.10 (Workspaces 5.0.0); bumping Roslyn independently triggers NU1608. -->
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.0.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.10">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.3" />
<!-- Lite mode (self-hosted): SQLite replaces Postgres, in-process channels replace Redis. -->
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.10" />
<PackageReference Include="Scalar.AspNetCore" Version="2.17.2" />
<PackageReference Include="Serilog.AspNetCore" Version="10.0.0" />
<PackageReference Include="Serilog.Sinks.OpenSearch" Version="2.0.0" />
<PackageReference Include="StackExchange.Redis" Version="2.8.24" />
<PackageReference Include="YamlDotNet" Version="16.2.1" />
</ItemGroup>
</Project>