2022-03-20 21:23:42 +04:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2022-03-26 21:51:15 +04:00
|
|
|
<ItemGroup>
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
|
|
|
|
<PackageReference Include="NLog.Extensions.Logging" Version="1.7.4" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-03-20 21:23:42 +04:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\..\Common\CoreDatabase\CoreDatabase.csproj" />
|
|
|
|
<ProjectReference Include="..\..\Common\ToolsModule\ToolsModule.csproj" />
|
|
|
|
<ProjectReference Include="..\..\Department\DepartmentContract\DepartmentContract.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-03-26 21:51:15 +04:00
|
|
|
<ItemGroup>
|
|
|
|
<None Update="appsettings.json">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="DepartmentPortal.config">
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-03-20 21:23:42 +04:00
|
|
|
</Project>
|