blob: 2cff4bdae3b984733c99d406829451693631b20d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.0</TargetFramework>
<Version>3.0.0</Version>
<Authors>Andrew Lee</Authors>
<Copyright>(C) Copyright 2019</Copyright>
<NeutralLanguage>en</NeutralLanguage>
<Company>AleeCorp</Company>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Discord.Net" Version="2.0.1" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
<PackageReference Include="System.IO.FileSystem" Version="4.3.0" />
</ItemGroup>
</Project>
|