WorldTime/WorldTime.csproj

34 lines
1.4 KiB
XML
Raw Normal View History

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2023-01-15 06:05:31 +00:00
<Version>2.3.0</Version>
<Authors>NoiTheCat</Authors>
</PropertyGroup>
<ItemGroup>
2022-06-30 04:56:28 +00:00
<PackageReference Include="CommandLineParser" Version="2.9.1" />
2023-09-09 17:42:08 +00:00
<PackageReference Include="Discord.Net" Version="3.12.0" />
2023-01-15 06:05:31 +00:00
<PackageReference Include="EFCore.NamingConventions" Version="7.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
2022-12-31 06:07:21 +00:00
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="7.0.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.2" />
2023-06-12 02:17:28 +00:00
<PackageReference Include="NodaTime" Version="3.1.9" />
2022-12-31 06:07:21 +00:00
<PackageReference Include="Npgsql" Version="7.0.1" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.1" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.Design" Version="1.1.0" />
</ItemGroup>
2023-01-24 03:56:00 +00:00
<PropertyGroup>
<DefaultItemExcludes>Docs/**;$(DefaultItemExcludes)</DefaultItemExcludes>
</PropertyGroup>
</Project>