2020-08-08 22:24:01 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-03-19 00:21:35 +01:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2021-03-19 01:10:22 +01:00
|
|
|
<RuntimeIdentifiers>win10-x64;linux-x64;linux-musl-x64</RuntimeIdentifiers>
|
2020-08-08 22:24:01 +02:00
|
|
|
<VersionSuffix>$(VersionSuffix)</VersionSuffix>
|
|
|
|
<Version Condition=" '$(VersionSuffix)' != '' ">$(VersionSuffix)</Version>
|
|
|
|
<Version Condition=" '$(VersionSuffix)' == '' ">0.0.0-DEV</Version>
|
|
|
|
<RootNamespace>Geekbot.Core</RootNamespace>
|
|
|
|
<AssemblyName>Geekbot.Core</AssemblyName>
|
|
|
|
<NoWarn>NU1701</NoWarn>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-09-23 16:05:43 +02:00
|
|
|
<PackageReference Include="Anemonis.RandomOrg" Version="1.14.0" />
|
2020-08-08 22:24:01 +02:00
|
|
|
<PackageReference Include="CommandLineParser" Version="2.8.0" />
|
2021-08-11 17:58:06 +02:00
|
|
|
<PackageReference Include="Discord.Net" Version="2.4.0" />
|
2021-03-19 00:21:35 +01:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.0-preview.2.21154.2" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.0-preview.2.21154.2">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.InMemory" Version="6.0.0-preview.2.21154.2" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.0-preview.2.21154.2" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.0-preview.2.21154.2">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.0-preview.2.21154.6" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="6.0.0-preview.2.21154.6" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0-preview.2.21154.6" />
|
2020-08-08 22:24:01 +02:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
|
|
|
<PackageReference Include="NLog" Version="4.7.2" />
|
|
|
|
<PackageReference Include="NLog.Config" Version="4.7.2" />
|
2021-03-19 00:21:35 +01:00
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.0-preview2" />
|
2020-08-08 22:24:01 +02:00
|
|
|
<PackageReference Include="SharpRaven" Version="2.4.0" />
|
|
|
|
<PackageReference Include="SumoLogic.Logging.NLog" Version="1.0.1.3" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|