Update to fix a bug with scanning files in use by ACBFinder (#11)

This commit is contained in:
Aida Enna 2020-03-15 17:41:55 -04:00 committed by GitHub
parent 4446fe882c
commit 5cb8669240
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 2 deletions

View File

@ -47,6 +47,7 @@ namespace AcbFinder
int AWBsFound = 0;
foreach (var filePath in di)
{
if (filePath.Contains("ACBFinder.exe") || filePath.Contains("SonicAudioLib.dll") || filePath.Contains("ACB_FinderLog.txt")) continue;
using (var stream = File.OpenRead(filePath))
{
stream.Read(buffer, 0, 4);

View File

@ -32,5 +32,5 @@ using System.Runtime.InteropServices;
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.0.1")]
[assembly: AssemblyFileVersion("1.0.0.1")]