-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMtkClient.Library.csproj
More file actions
24 lines (21 loc) · 1.09 KB
/
Copy pathMtkClient.Library.csproj
File metadata and controls
24 lines (21 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<RootNamespace>MtkClient.Library</RootNamespace>
<AssemblyName>MtkClient.Library</AssemblyName>
<LangVersion>7.3</LangVersion>
<OutputType>Library</OutputType>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<Description>MTK Flash Client Library - .NET Framework 4.8 port of mtkclient Python tool for MediaTek device exploitation, flash reading/writing, and more.</Description>
<Authors>B.Kerler, QstDevTeam</Authors>
<Copyright>Copyright (c) B.Kerler 2018-2026. Licensed under GPLv3.</Copyright>
<Version>2.1.4</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
<PackageReference Include="LibUsbDotNet" Version="3.0.102-alpha" />
<PackageReference Include="System.IO.Ports" Version="8.0.0" />
<PackageReference Include="BouncyCastle.Cryptography" Version="2.5.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
</Project>