-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSharpKit.csproj
More file actions
39 lines (30 loc) · 1.38 KB
/
SharpKit.csproj
File metadata and controls
39 lines (30 loc) · 1.38 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
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<TargetFrameworks>net8.0;net9.0</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>SharpKit</AssemblyName>
<RootNamespace>SharpKit</RootNamespace>
<LangVersion>latest</LangVersion>
<Optimize>true</Optimize>
<GenerateDocumentationFile>false</GenerateDocumentationFile>
<Platforms>x64</Platforms>
<NoWarn>CA1416</NoWarn>
<PackageId>SharpKit.Offensive</PackageId>
<Version>1.0.0</Version>
<Authors>Sleek</Authors>
<Title>SharpKit - Offensive Security Library for .NET</Title>
<Description>A .NET 8 and .NET 9 C# library for offensive security operations. No external NuGet dependencies. Uses System.Net.Http, System.Runtime.InteropServices, and System.Net.Sockets only.</Description>
<PackageTags>security;offensive;redteam;win32;syscalls;injection;kerberos;packet-crafting</PackageTags>
<PackageProjectUrl>https://github.com/CzaxStudio/SharpKit</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>