8aee35c123
- HrynCo.NotificationService.Core (class library) - HrynCo.NotificationService.Api (ASP.NET Core Web API) - HrynCo.NotificationService.Worker (Worker Service) - HrynCo.NotificationService.Core.Tests (xUnit) - HrynCo.NotificationService.Api.IntegrationTests (xUnit) - Api and Worker reference Core - Test projects reference their respective targets Ref: IT-628 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
18 lines
576 B
XML
18 lines
576 B
XML
<Project Sdk="Microsoft.NET.Sdk.Worker">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<UserSecretsId>dotnet-HrynCo.NotificationService.Worker-17271b55-3aa1-4794-b843-5a1e0c70be38</UserSecretsId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="10.0.6" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\HrynCo.NotificationService.Core\HrynCo.NotificationService.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|