2017-09-19 20:39:49 +02:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
2019-03-04 02:27:50 +01:00
|
|
|
|
<TargetFramework>netcoreapp2.2</TargetFramework>
|
2018-06-01 18:10:22 +02:00
|
|
|
|
<RuntimeIdentifiers>win-x64;linux-x64</RuntimeIdentifiers>
|
2017-09-19 20:39:49 +02:00
|
|
|
|
<ApplicationIcon>derp.ico</ApplicationIcon>
|
2019-03-17 18:38:33 +01:00
|
|
|
|
<Version>4.1.0</Version>
|
2018-05-06 03:24:09 +02:00
|
|
|
|
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
|
|
|
|
|
<Version Condition=" '$(VersionSuffix)' != '' ">$(Version)-$(VersionSuffix)</Version>
|
2019-03-04 02:27:50 +01:00
|
|
|
|
<Version Condition=" '$(VersionSuffix)' == '' ">$(Version)-DEV</Version>
|
2017-09-19 20:39:49 +02:00
|
|
|
|
<Company>Pizza and Coffee Studios</Company>
|
|
|
|
|
<Authors>Pizza and Coffee Studios</Authors>
|
|
|
|
|
<Description>A Discord bot</Description>
|
|
|
|
|
<RepositoryUrl>https://github.com/pizzaandcoffee/Geekbot.net</RepositoryUrl>
|
2018-01-19 00:59:21 +01:00
|
|
|
|
<NoWarn>NU1701</NoWarn>
|
2018-05-10 03:29:11 +02:00
|
|
|
|
<RepositoryType>git</RepositoryType>
|
|
|
|
|
<PackageProjectUrl>https://geekbot.pizzaandcoffee.rocks</PackageProjectUrl>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
|
<Optimize>true</Optimize>
|
2017-09-19 20:39:49 +02:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2019-03-02 06:48:16 +01:00
|
|
|
|
<PackageReference Include="CommandLineParser" Version="2.4.3" />
|
2017-09-19 20:39:49 +02:00
|
|
|
|
<PackageReference Include="Discord.Net">
|
2019-03-02 06:12:35 +01:00
|
|
|
|
<Version>2.0.1</Version>
|
2017-09-19 20:39:49 +02:00
|
|
|
|
</PackageReference>
|
2019-03-02 06:48:16 +01:00
|
|
|
|
<PackageReference Include="Google.Apis.YouTube.v3" Version="1.38.0.1488" />
|
|
|
|
|
<PackageReference Include="HtmlAgilityPack" Version="1.9.1" />
|
2019-03-04 02:27:50 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
|
2018-05-30 23:54:00 +02:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.DataProtection.Redis" Version="0.4.0" />
|
2019-03-04 02:27:50 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.2.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Cors" Version="2.2.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="2.2.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.2.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="2.2.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="2.2.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="2.2.2" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="2.2.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="2.2.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Options" Version="2.2.0" />
|
2019-03-02 06:32:59 +01:00
|
|
|
|
<PackageReference Include="MtgApiManager.Lib" Version="1.2.0" />
|
2017-10-01 23:41:25 +02:00
|
|
|
|
<PackageReference Include="MyAnimeListSharp" Version="1.3.4" />
|
2019-03-02 06:48:16 +01:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
|
|
|
|
|
<PackageReference Include="NLog" Version="4.5.11" />
|
|
|
|
|
<PackageReference Include="NLog.Config" Version="4.5.11" />
|
2019-03-04 02:27:50 +01:00
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="2.2.0" />
|
2018-06-13 22:18:57 +02:00
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.Design" Version="2.0.0-preview1" />
|
2019-03-02 06:48:16 +01:00
|
|
|
|
<PackageReference Include="PokeApi.NET" Version="1.1.1" />
|
2018-05-17 22:06:58 +02:00
|
|
|
|
<PackageReference Include="SharpRaven" Version="2.4.0" />
|
2019-03-02 06:48:16 +01:00
|
|
|
|
<PackageReference Include="SumoLogic.Logging.NLog" Version="1.0.1.1" />
|
2019-03-04 02:27:50 +01:00
|
|
|
|
<PackageReference Include="System.Net.Http" Version="4.3.4" />
|
2017-09-19 20:39:49 +02:00
|
|
|
|
<PackageReference Include="System.Runtime.Serialization.Formatters" Version="4.3.0" />
|
|
|
|
|
<PackageReference Include="System.Runtime.Serialization.Json">
|
|
|
|
|
<Version>4.3.0</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="System.Runtime.Serialization.Primitives">
|
|
|
|
|
<Version>4.3.0</Version>
|
|
|
|
|
</PackageReference>
|
2018-02-14 23:40:44 +01:00
|
|
|
|
<PackageReference Include="Utf8Json" Version="1.3.7" />
|
2017-09-19 20:39:49 +02:00
|
|
|
|
</ItemGroup>
|
2017-11-16 17:19:43 +01:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="Storage\checkEmPics">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="Storage\croissant">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="Storage\fortunes">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="Storage\pandas">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="Storage\pumpkin">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="Storage\squirrel">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="Storage\turtles">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2018-03-28 21:28:16 +02:00
|
|
|
|
<None Update="Storage\pinguins">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2018-03-28 22:14:07 +02:00
|
|
|
|
<None Update="Storage\foxes">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2018-05-03 00:56:06 +02:00
|
|
|
|
<None Update="Lib\Localization\Translations.json">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
<None Update="Lib\Converters\MtgManaEmojis.json">
|
|
|
|
|
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2019-05-01 18:34:42 +02:00
|
|
|
|
<None Update="Storage\dab">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2017-11-16 17:19:43 +01:00
|
|
|
|
</ItemGroup>
|
2018-04-28 01:01:48 +02:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\WikipediaApi\WikipediaApi.csproj" />
|
|
|
|
|
</ItemGroup>
|
2018-05-10 17:56:43 +02:00
|
|
|
|
</Project>
|