aboutsummaryrefslogtreecommitdiff
path: root/AleeBot/AleeBot.csproj
blob: 3e59679971a3656714cbe6dd0fdd52a0ea4179e1 (plain) (blame)
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
<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.NET</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>

  <Target Name="PreBuild" BeforeTargets="PreBuildEvent">
    <Exec Command="" />
  </Target>

</Project>