- Add FormDefinitionVersion with compare/versions endpoints and schema differ - Add Notification entity, endpoints and application features - Add Scheduler (timeout) and WebhookDispatcher services - Add FormDataValidator/FieldPermissionEvaluator/ReactionEvaluator - Add workflow task mark-read, CC support and SystemUserContext - Add EF migrations for form versions and notifications - Add unit tests for form schema, notifications, scheduler and serialization
25 lines
1.1 KiB
XML
25 lines
1.1 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" />
|
|
<ProjectReference Include="..\..\src\Workflow.Api\Workflow.Api.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|