32 lines
994 B
XML
32 lines
994 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Remove="appsettings.json" />
|
|
<Content Include="appsettings.json">
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\modules\admin\src\KonSoft.Admin.Application.Contracts\KonSoft.Admin.Application.Contracts.csproj" />
|
|
<ProjectReference Include="..\..\modules\admin\src\KonSoft.Admin.EntityFrameworkCore\KonSoft.Admin.EntityFrameworkCore.csproj" />
|
|
<ProjectReference Include="..\KonSoft.Shared.Hosting.AspNetCore\KonSoft.Shared.Hosting.AspNetCore.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Remove="Logs\**" />
|
|
<Content Remove="Logs\**" />
|
|
<EmbeddedResource Remove="Logs\**" />
|
|
<None Remove="Logs\**" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|