Skip to content

Commit

Permalink
Fixed count when extracting files.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jared Goodwin committed Feb 9, 2017
1 parent 6ceeed6 commit b542257
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Make-EXE/Maker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static void Main(string[] args)
count++;
}
}
count = 0;
count = 1;
foreach (var resource in resources)
{
Console.WriteLine("Extracting file " + count + " of " + resources.Length + "...");
Expand All @@ -44,6 +44,7 @@ static void Main(string[] args)
fs.Close();
}
}
count++;
}
Console.WriteLine("Starting up...");
if (Path.GetExtension(resources[0]).ToLower() == ".ps1")
Expand Down
4 changes: 2 additions & 2 deletions Make-EXE/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
// 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.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
[assembly: AssemblyVersion("1.1.1.0")]
[assembly: AssemblyFileVersion("1.1.1.0")]
[assembly: Guid("eea5aba0-927d-44ef-95ff-b4eccca23cfe")]

0 comments on commit b542257

Please sign in to comment.