27 lines
764 B
XML
27 lines
764 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<GenerateDocumentationFile>True</GenerateDocumentationFile>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Constants\**" />
|
|
<Content Remove="Constants\**" />
|
|
<EmbeddedResource Remove="Constants\**" />
|
|
<None Remove="Constants\**" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Blueprint.Logging" Version="0.0.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Core.Thalos.Domain\Core.Thalos.Domain.csproj" />
|
|
<ProjectReference Include="..\Core.Thalos.Provider\Core.Thalos.Provider.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|