-
Notifications
You must be signed in to change notification settings - Fork 0
/
MyTelegramBot.csproj
29 lines (29 loc) · 1.33 KB
/
MyTelegramBot.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
26
27
28
29
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
<EnvironmentName>Development</EnvironmentName>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App"/>
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.2.0" PrivateAssets="All"/>
<PackageReference Include="newtonsoft.json" Version="12.0.2"/>
<PackageReference Include="nlog" Version="4.6.7"/>
<PackageReference Include="nlog.config" Version="4.6.7"/>
<PackageReference Include="nlog.web.aspnetcore" Version="4.8.4"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.2.6"/>
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="7.0.0"/>
</ItemGroup>
<ItemGroup>
<Content Update="NLog.config" CopyToOutputDirectory="PreserveNewest"/>
<Content Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Update="hosting.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<!-- <Content Update="ProductDatabase.db">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content> -->
</ItemGroup>
</Project>