-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathTheGuide.csproj
30 lines (26 loc) · 1.1 KB
/
TheGuide.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp1.1</TargetFramework>
<Authors>Daniël Zondervan</Authors>
<Company />
<Product>The Guide Discord Bot</Product>
<Description>A Discord bot specifically made for tModLoader</Description>
<GeneratePackageOnBuild>False</GeneratePackageOnBuild>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
<FileVersion>4.0.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CoreCLR-NCalc" Version="2.1.3" />
<PackageReference Include="Discord.Addons.EmojiTools" Version="1.1.0-ci-00017" />
<PackageReference Include="Discord.Addons.Preconditions" Version="0.1.2-rc" />
<PackageReference Include="Discord.Addons.SimplePermissions" Version="0.8.19-rc" />
<PackageReference Include="Discord.Net" Version="1.0.0-rc2-00698" />
<PackageReference Include="Newtonsoft.Json" Version="10.0.2" />
</ItemGroup>
<ItemGroup>
<None Update="config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>