-
Notifications
You must be signed in to change notification settings - Fork 4
/
Reecon.csproj
27 lines (24 loc) · 985 Bytes
/
Reecon.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<StartupObject>Reecon.Program</StartupObject>
<SignAssembly>true</SignAssembly>
<SelfContained>true</SelfContained>
<Platforms>arm64</Platforms>
<PlatformTarget>AnyCPU</PlatformTarget>
</PropertyGroup>
<ItemGroup>
<!-- FTP - To find hidden folders (Named .) and to read text in files -->
<PackageReference Include="FluentFTP" Version="51.1.0" />
<!-- MySQL - To interact with MySQL servers -->
<PackageReference Include="MySqlConnector" Version="2.4.0" />
<!-- To access PostgreSQL servers -->
<PackageReference Include="Npgsql" Version="9.0.1" />
<!-- LDAP -->
<PackageReference Include="System.DirectoryServices.Protocols" Version="9.0.0" />
<!-- A list of ports and their descriptions -->
<EmbeddedResource Include="Ports.txt" />
</ItemGroup>
</Project>