-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMigrationBot.csproj
25 lines (22 loc) · 1.08 KB
/
MigrationBot.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UserSecretsId>8692c6f3-833a-474b-a9c7-5c24fd33f319</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Google.Apis" Version="1.61.0" />
<PackageReference Include="Google.Apis.Auth" Version="1.61.0" />
<PackageReference Include="Google.Apis.Sheets.v4" Version="1.61.0.3141" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.10">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Npgsql" Version="7.0.4" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.4" />
<PackageReference Include="Telegram.Bot" Version="19.0.0" />
<PackageReference Include="Telegram.Bots.Extensions.Polling" Version="5.9.0" />
</ItemGroup>
</Project>