-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathHortBot.csproj
33 lines (33 loc) · 1.53 KB
/
HortBot.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
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk.Worker;Microsoft.NET.Sdk.Publish">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>dotnet-WorkerService1-f29c53af-2c83-485a-b75b-c45691213097</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>.</DockerfileContext>
<ContainerImageName>dotnet-hortpro</ContainerImageName>
<Authors>Denis Manteufel</Authors>
<Copyright>2023</Copyright>
</PropertyGroup>
<ItemGroup>
<Compile Remove="#IDs\**" />
<Compile Remove="artifacts\**" />
<Content Remove="#IDs\**" />
<Content Remove="artifacts\**" />
<EmbeddedResource Remove="#IDs\**" />
<EmbeddedResource Remove="artifacts\**" />
<None Remove="#IDs\**" />
<None Remove="artifacts\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Configuration" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
<PackageReference Include="Microsoft.Extensions.Hosting.Systemd" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="7.0.0" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.2" />
<PackageReference Include="Telegram.Bot" Version="18.0.0" />
<Content Update="appsettings.json" CopyToPublishDirectory="Never" />
</ItemGroup>
</Project>