-
Notifications
You must be signed in to change notification settings - Fork 0
/
Stresser.csproj
45 lines (39 loc) · 1.34 KB
/
Stresser.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Stresser</RootNamespace>
<Title>Stresser</Title>
<Authors>MythicalSystems</Authors>
<Company>MythicalSystems</Company>
<Copyright>2024 MythicalSystems</Copyright>
<Description>A free ddos tool for testing</Description>
<AssemblyVersion>1.0.0</AssemblyVersion>
<FileVersion>1.0.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Costura.Fody" Version="5.7.0">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.AspNetCore" Version="2.2.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Salaros.ConfigParser" Version="0.3.8" />
</ItemGroup>
<ItemGroup>
<Compile Remove="**/StresserHTTP/**"/>
<Compile Remove="**/StresserTCP/**"/>
<Compile Remove="**/StresserUDP/**"/>
</ItemGroup>
<ItemGroup>
<None Remove="config.ini" />
<None Remove="logs\**" />
</ItemGroup>
<ItemGroup>
<Compile Remove="logs\**" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Remove="logs\**" />
</ItemGroup>
</Project>