-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMemTools.csproj
More file actions
21 lines (20 loc) · 890 Bytes
/
MemTools.csproj
File metadata and controls
21 lines (20 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageId>MemTools</PackageId>
<Version>1.0.0</Version>
<Description>Library for simple reading/writing of process memory and freezing values.</Description>
<PackageTags>memory, process, hacking, pointer</PackageTags>
<RepositoryUrl>https://github.com/SolidProgramming/MemTools</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/SolidProgramming/MemTools</PackageProjectUrl>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<None Include=".\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>