blob: 3bce0a86262bcf73b697b82579dd894a5e035d24 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<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>
<ApplicationIcon>AleeBot.ico</ApplicationIcon>
<AssemblyName>AleeBot</AssemblyName>
<RootNamespace>AleeBot</RootNamespace>
<RepositoryUrl>https://github.com/AleeCorp/AleeBot.NET</RepositoryUrl>
</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>
|