- gRPC auth service for token validation - Value comparator system (string, numeric, boolean, datetime, collection) - Condition evaluator with strategy chain - Form definition and data improvements - Workflow instance/task endpoints updated - Seed data and EF design-time factory - Test coverage for comparators and handlers
24 lines
1.0 KiB
XML
24 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<IsPackable>false</IsPackable>
|
|
<IsTestProject>true</IsTestProject>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="*" />
|
|
<PackageReference Include="xunit" Version="*" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="*" />
|
|
<PackageReference Include="FluentAssertions" Version="*" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="*" />
|
|
<PackageReference Include="Moq" Version="*" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Workflow.Domain\Workflow.Domain.csproj" />
|
|
<ProjectReference Include="..\..\src\Workflow.Infrastructure\Workflow.Infrastructure.csproj" />
|
|
<ProjectReference Include="..\..\src\Workflow.Application\Workflow.Application.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|