This repository has been archived by the owner on Aug 8, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
telega-sharp.csproj
54 lines (54 loc) · 2.47 KB
/
telega-sharp.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
42
43
44
45
46
47
48
49
50
51
52
53
54
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp2.0</TargetFramework>
<StartupObject>TelegramApp.Program</StartupObject>
<ApplicationIcon />
<ApplicationManifest>Application.manifest</ApplicationManifest>
<AssemblyName>TelegramApp</AssemblyName>
<RootNamespace>TelegramApp</RootNamespace>
<UserSecretsId>4eaff004-2ef7-4a92-b6b6-695bbbe2499d</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<None Remove="Data\DeletedChat.png" />
<None Remove="Data\TelegramIcon.png" />
<None Remove="Views\ui\ChatBoxEntry.glade" />
<None Remove="Views\ui\ChatPage.glade" />
<None Remove="Views\ui\ChatPage.ui" />
<None Remove="Views\ui\PhonePage.glade" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Data\DeletedChat.png" />
<EmbeddedResource Include="Data\TelegramIcon.png" />
<EmbeddedResource Include="Views\ui\ChatBoxEntry.glade" />
<EmbeddedResource Include="Views\ui\ChatPage.glade" />
<EmbeddedResource Include="Views\ui\MainWindow.glade" />
<EmbeddedResource Include="Views\ui\PhonePage.glade" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="GtkSharp" Version="3.22.24.*" />
<PackageReference Include="Microsoft.Extensions.Configuration.FileExtensions" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Xml" Version="2.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
<PackageReference Include="NLog" Version="4.6.5" />
<PackageReference Include="NSubsys" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.5.0" />
<PackageReference Include="TDLib" Version="1.3.0" />
<PackageReference Include="TDLib.Api" Version="1.3.0" />
<PackageReference Include="tdlib.native" Version="1.3.0" />
<PackageReference Include="xunit.assert" Version="2.4.1" />
</ItemGroup>
<ItemGroup>
<None Update="appconfig.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="NLog.config">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>