-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHungerGamesTelegram.csproj
34 lines (30 loc) · 997 Bytes
/
HungerGamesTelegram.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp2.2</TargetFramework>
<LangVersion>8</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Telegram.Bot" Version="15.0.0" />
</ItemGroup>
<ItemGroup>
<None Update="botkey.key">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Events\buddy.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Events\items.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Events\LootEvents.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Events\ChoiceEvent.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="Events\SingleEvents.csv">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>