-
-
Notifications
You must be signed in to change notification settings - Fork 52
Expand file tree
/
Copy pathHyperSploit.csproj
More file actions
34 lines (31 loc) · 1.4 KB
/
HyperSploit.csproj
File metadata and controls
34 lines (31 loc) · 1.4 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
25
26
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishAot>true</PublishAot>
<Version>1.1.0</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AdvancedSharpAdbClient" Version="3.3.12" />
<PackageReference Include="Spectre.Console" Version="0.49.0" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource
Include="Assets/Settings.apk.gz"
LogicalName="Settings.apk.gz"/>
<EmbeddedResource
Include="Assets/adb-linux/**/*"
Condition="$([MSBuild]::IsOSPlatform('Linux'))"
LogicalName="$([System.String]::Copy('%(RelativeDir)').Replace('\','/'))%(Filename)%(Extension)"/>
<EmbeddedResource
Include="Assets/adb-windows/**/*"
Condition="$([MSBuild]::IsOSPlatform('Windows'))"
LogicalName="$([System.String]::Copy('%(RelativeDir)').Replace('\','/'))%(Filename)%(Extension)"/>
<EmbeddedResource
Include="Assets/adb-macos/**/*"
Condition="$([MSBuild]::IsOSPlatform('macOS'))"
LogicalName="$([System.String]::Copy('%(RelativeDir)').Replace('\','/'))%(Filename)%(Extension)"/>
</ItemGroup>
</Project>