1
0
Fork 0
Phils-Example-Crawling-Projekt/WebAPI/WebAPI.csproj

23 lines
691 B

<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>