-
-
Notifications
You must be signed in to change notification settings - Fork 631
Expand file tree
/
Copy pathTelegram.Stub.csproj
More file actions
30 lines (26 loc) · 992 Bytes
/
Telegram.Stub.csproj
File metadata and controls
30 lines (26 loc) · 992 Bytes
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows10.0.18362.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<InvariantGlobalization>true</InvariantGlobalization>
<EnableDefaultItems>false</EnableDefaultItems>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Platforms>x64;arm64</Platforms>
<RuntimeIdentifiers>win-x64;win-arm64</RuntimeIdentifiers>
<Win32Resource>Resources.res</Win32Resource>
</PropertyGroup>
<ItemGroup>
<Compile Include="BridgeApplicationContext.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="Logger.cs" />
<Compile Include="NotifyIcon.cs" />
<Compile Include="Passkeys.cs" />
<Compile Include="Program.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Win32.SystemEvents" Version="10.0.0" />
</ItemGroup>
</Project>