52 lines
2.7 KiB
XML
52 lines
2.7 KiB
XML
<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>
|
|
|
|
<!-- Exclude the test project directory from default SDK globbing (tests live
|
|
inside this repo as a sibling directory, not a project reference). The Web
|
|
SDK also globs Content (**/*.json), so without the Content/EmbeddedResource
|
|
removal the tests' obj/*.json is copied into the output — and then back
|
|
into it through the test project reference, nesting the output tree on
|
|
every build until the path is too long to build. -->
|
|
<ItemGroup>
|
|
<Compile Remove="w4c-workflows-api.Tests/**" />
|
|
<None Remove="w4c-workflows-api.Tests/**" />
|
|
<Content Remove="w4c-workflows-api.Tests/**" />
|
|
<EmbeddedResource Remove="w4c-workflows-api.Tests/**" />
|
|
</ItemGroup>
|
|
|
|
<!-- Built-in node blueprints ship embedded so the catalog is available without
|
|
relying on files being copied next to the binary. Connector packs loaded
|
|
at runtime come from a directory instead. -->
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="Services/Nodes/Catalog/*.json" />
|
|
</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>
|