29 lines
963 B
XML
29 lines
963 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<NoWarn>1701;1702;1591</NoWarn>
|
|
<DocumentationFile>Easy.Admin.Application.xml</DocumentationFile>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Remove="applicationsettings.json" />
|
|
<None Remove="Easy.Admin.Application.xml" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Content Include="applicationsettings.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="Auth\Dtos\" />
|
|
<Folder Include="Blog\Dtos\" />
|
|
<Folder Include="Config\Dtos\" />
|
|
<Folder Include="File\Dtos\" />
|
|
<Folder Include="Logging\Dtos\" />
|
|
<Folder Include="Menu\Dtos\" />
|
|
<Folder Include="Organization\Dtos\" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\YD_Event.Core\YD_Event.Core.csproj" />
|
|
</ItemGroup>
|
|
</Project> |