-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUnifiedban.Next.Terminal.Telegram.csproj
41 lines (37 loc) · 1.88 KB
/
Unifiedban.Next.Terminal.Telegram.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
34
35
36
37
38
39
40
41
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net6.0</TargetFramework>
<Authors>Fabricators</Authors>
<Product>Unifiedban Terminal Telegram</Product>
<Copyright>Fabricators 2022</Copyright>
<BuildNumber Condition=" '$(BuildNumber)' == '' ">0</BuildNumber>
<VersionSuffix Condition="'$(Configuration)'=='Debug'">-dev</VersionSuffix>
<FileVersion>1.0.0.0</FileVersion>
<Version>1.0.0$(VersionSuffix)</Version>
<AssemblyVersion>1.0.0</AssemblyVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="RabbitMQ.Client" Version="6.2.4" />
<PackageReference Include="Telegram.Bot" Version="18.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\unifiedban-businesslogic\Unifiedban.Next.BusinessLogic.csproj" />
<ProjectReference Include="..\..\unifiedban-common-telegram\Unifiedban.Next.Common.Telegram.csproj" />
<ProjectReference Include="..\..\unifiedban-common\Unifiedban.Next.Common.csproj" />
<ProjectReference Include="..\..\unifiedban-models\Unifiedban.Next.Models.csproj" />
</ItemGroup>
<ItemGroup>
<None Update="appsettings.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="appsettings.example.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>