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

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
paolodelfino committed Oct 4, 2022
2 parents bbb37dc + 3a70e7d commit 2009477
Showing 1 changed file with 29 additions and 2 deletions.
31 changes: 29 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,33 @@ Acs Core contains both AcsFinder and AcsDumper source.
- Find occurrences between two or more files
- Search something in one or more files

## How To Use

These are just some examples.

```sh
string[] results = AcsDumper.Dump(processesId);

foreach (string result in results)
{
Assets.OpenFile(result);
}
```

```sh
results = AcsDumper.DumpAvailable();

foreach (string result in results)
{
Assets.OpenFile(result);
}
```

```sh
string result = AcsFinder.GetDifferences(filesList);
Assets.OpenFile(result);
```

## Installation

Download the [nuget](https://www.nuget.org/packages/AcsCore) to use Acs Core in your own project
Expand All @@ -24,10 +51,10 @@ 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.0)
You can download the latest version [here](https://github.com/HackingSgravato/Acs.Core/releases/tag/v1.0.1.1)

```sh
https://github.com/HackingSgravato/Acs.Core/releases/tag/v1.0.0
https://github.com/HackingSgravato/Acs.Core/releases/tag/v1.0.1.1
```

## Build
Expand Down

0 comments on commit 2009477

Please sign in to comment.