Acs Core contains both AcsFinder and AcsDumper source.
- Dump process
- Dump all available processes
- Find differences between two or more files
- Find occurrences between two or more files
- Search something in one or more files
These are just some examples.
string[] results = AcsDumper.Dump(processesId);
foreach (string result in results)
{
Assets.OpenFile(result);
}
results = AcsDumper.DumpAvailable();
foreach (string result in results)
{
Assets.OpenFile(result);
}
string result = AcsFinder.GetDifferences(filesList);
Assets.OpenFile(result);
Download the nuget to use Acs Core in your own project
https://www.nuget.org/packages/AcsCore
or use the dll release version below.
You can download the latest version here
https://github.com/HackingSgravato/Acs.Core/releases/tag/v1.0.1.2
Acs Core requires .Net 7 to be built.
You can use git clone and build your own copy
git clone https://github.com/HackingSgravato/Acs.Core.git
or you can download the zip
Want to contribute? Great!
Create a pull request.
Go here
https://github.com/HackingSgravato/Acs.Core/pulls
and click New pull request