-
Notifications
You must be signed in to change notification settings - Fork 0
/
WednesdayBotCore.csproj
23 lines (23 loc) · 1 KB
/
WednesdayBotCore.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="Current">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<LangVersion>7.3</LangVersion>
<StartupObject>BotTest.Program</StartupObject>
<AssemblyName>WednesdayBotCore</AssemblyName>
<RootNamespace>WednesdayBotCore</RootNamespace>
<FileUpgradeFlags>40</FileUpgradeFlags>
<UpgradeBackupLocation>C:\Users\matth\source\repos\WednesdayBotTest\Backup\</UpgradeBackupLocation>
<OldToolsVersion>2.0</OldToolsVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Telegram.Bot" Version="17.0.0" />
<PackageReference Include="Telegram.Bot.Extensions.Polling" Version="1.0.2" />
</ItemGroup>
</Project>