You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
691 B
23 lines
691 B
2 years ago
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
||
|
|
||
|
<PropertyGroup>
|
||
|
<TargetFramework>net6.0</TargetFramework>
|
||
|
<Nullable>enable</Nullable>
|
||
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
<Platforms>AnyCPU;x64</Platforms>
|
||
|
</PropertyGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
|
||
|
<PackageReference Include="WTelegramClient" Version="3.0.0" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
<ItemGroup>
|
||
|
<ProjectReference Include="..\Common\Common.csproj" />
|
||
|
<ProjectReference Include="..\Core\Core.csproj" />
|
||
|
<ProjectReference Include="..\DataBase\DataBase.csproj" />
|
||
|
<ProjectReference Include="..\Scheduler\Scheduler.csproj" />
|
||
|
</ItemGroup>
|
||
|
|
||
|
</Project>
|