2021-11-08 05:46:26 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2024-05-10 06:06:03 +00:00
|
|
|
<Version>2.3.3</Version>
|
|
|
|
<Authors>NoiTheCat</Authors>
|
|
|
|
|
2021-11-08 05:46:26 +00:00
|
|
|
<OutputType>Exe</OutputType>
|
2024-05-10 06:06:03 +00:00
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
2021-11-08 05:46:26 +00:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
2024-05-10 06:06:03 +00:00
|
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
|
|
<DebugType>none</DebugType>
|
|
|
|
<DebugSymbols>false</DebugSymbols>
|
|
|
|
<WarningLevel>0</WarningLevel>
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
2021-11-08 05:46:26 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-06-30 04:56:28 +00:00
|
|
|
<PackageReference Include="CommandLineParser" Version="2.9.1" />
|
2024-05-10 06:06:03 +00:00
|
|
|
<PackageReference Include="Discord.Net" Version="3.14.1" />
|
|
|
|
<PackageReference Include="EFCore.NamingConventions" Version="8.0.3" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.4" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.4">
|
2022-06-29 00:27:10 +00:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
2024-05-10 06:06:03 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
|
2023-09-10 21:15:06 +00:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
2024-05-10 06:06:03 +00:00
|
|
|
<PackageReference Include="NodaTime" Version="3.1.11" />
|
|
|
|
<PackageReference Include="Npgsql" Version="8.0.3" />
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.2" />
|
2022-06-29 00:27:10 +00:00
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.Design" Version="1.1.0" />
|
2021-11-08 05:46:26 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
2023-01-24 03:56:00 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<DefaultItemExcludes>Docs/**;$(DefaultItemExcludes)</DefaultItemExcludes>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2021-11-08 05:46:26 +00:00
|
|
|
</Project>
|