16 lines
455 B
XML
16 lines
455 B
XML
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
|||
|
|
<PropertyGroup>
|
|||
|
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
|
<NoWarn>1701;1702;1591;1570</NoWarn>
|
|||
|
|
</PropertyGroup>
|
|||
|
|
|
|||
|
|
<ItemGroup>
|
|||
|
|
<ProjectReference Include="..\Infrastructure\RIZO.Infrastructure.csproj" />
|
|||
|
|
<ProjectReference Include="..\RIZO.ServiceCore\RIZO.ServiceCore.csproj" />
|
|||
|
|
</ItemGroup>
|
|||
|
|
|
|||
|
|
</Project>
|