Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.
/ Acs.Core Public archive

Easy-to-use library to work with files and processes

License

Notifications You must be signed in to change notification settings

paolodelfino/Acs.Core

Repository files navigation

Acs Core

Acs Project Core

Acs Core contains both AcsFinder and AcsDumper source.

Features

  • 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

How To Use

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);

Installation

Download the nuget to use Acs Core in your own project

https://www.nuget.org/packages/AcsCore

or use the dll release version below.

Release

You can download the latest version here

https://github.com/HackingSgravato/Acs.Core/releases/tag/v1.0.1.2

Build

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

Development

Want to contribute? Great!

Create a pull request.

Go here

https://github.com/HackingSgravato/Acs.Core/pulls

and click New pull request

About

Easy-to-use library to work with files and processes

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages