DocSpace-buildtools/common/services/ASC.TelegramService/ASC.TelegramService.csproj

31 lines
989 B
XML
Raw Normal View History

2022-03-05 15:38:42 +00:00
<Project Sdk="Microsoft.NET.Sdk.Worker">
2020-09-24 14:30:27 +00:00
<PropertyGroup>
2022-11-10 10:10:18 +00:00
<TargetFramework>net7.0</TargetFramework>
2020-09-24 14:30:27 +00:00
<ApplicationIcon />
<OutputType>Exe</OutputType>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
2022-02-28 08:35:59 +00:00
<ImplicitUsings>enable</ImplicitUsings>
2020-09-24 14:30:27 +00:00
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<DebugType>none</DebugType>
<DebugSymbols>false</DebugSymbols>
<NoWarn>1701;1702;NU1701</NoWarn>
</PropertyGroup>
<ItemGroup>
2022-04-27 14:54:31 +00:00
<ProjectReference Include="..\..\..\products\ASC.Files\Core\ASC.Files.Core.csproj" />
2020-09-24 14:30:27 +00:00
<ProjectReference Include="..\..\ASC.Api.Core\ASC.Api.Core.csproj" />
<ProjectReference Include="..\..\ASC.FederatedLogin\ASC.FederatedLogin.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
2022-11-24 11:40:13 +00:00
<ItemGroup>
<PackageReference Include="Telegram.Bot.Extensions.Polling" Version="1.0.2" />
</ItemGroup>
2020-09-24 14:30:27 +00:00
</Project>