Skip to content

Commit

Permalink
Updated change log.
Browse files Browse the repository at this point in the history
  • Loading branch information
CalebSerafin committed Jun 26, 2020
1 parent 6d83cbc commit 1494737
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 5 deletions.
2 changes: 2 additions & 0 deletions ADD-Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ Template finding is now multi-threaded.<br/>
User is notified if filter caused empty list.<br/>
Fixed command-line filter prefix<br/>
Window is only hidden from argument.<br/>
Auto-Yes can be enabled from argument.<br/>
HelpProvider replaced by ToolTip and Minimize.<br/>
`Antistasi Dev Deploy Benchmark.exe` added.<br/>
Incorrect switch will cause help page to appear.<br/>
Fixed bug where ADD filtered using full path of template.<br/>
Fixed bug where ADD use local folder for stringtable search.<br/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
</ItemGroup>
<ItemGroup>
<Compile Include="Program.cs" />
<Compile Include="Results.cs" />
<Compile Include="UserInput.cs" />
</ItemGroup>
<ItemGroup>
Expand All @@ -62,9 +63,6 @@
<ItemGroup>
<Folder Include="Properties\" />
</ItemGroup>
<ItemGroup>
<WCFMetadata Include="Connected Services\" />
</ItemGroup>
<Import Project="..\Antistasi Dev Deploy Shared\Antistasi Dev Deploy Shared.projitems" Label="Shared" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>
12 changes: 11 additions & 1 deletion Antistasi Dev Deploy Benchmark/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,14 @@ class Program {

string LastPath = GetPath();
string HelpText = PingADDHelpText(LastPath);
//List<string> Results = new List<string>();
//string ResultsCSV = "";
//string ResultsMDTable = "";
string Args;

StartAgain:
Console.Clear();
string Args = GetArgs(HelpText);
Args = GetArgs(HelpText);

Process ADD = new Process();
ADD.StartInfo.FileName = LastPath;
Expand All @@ -31,6 +36,11 @@ class Program {
Console.WriteLine(string.Join(Environment.NewLine,
"Operation Done!",
"Total time (D:H:S:MS) " + ADDTimer.Elapsed.ToString(),
//"",
//ResultsCSV,
//"",
//ResultsMDTable,
"",
"Press \"Q\" to quit."
));
if (Console.ReadKey().KeyChar.ToString().ToLower() == "q") return;
Expand Down
27 changes: 27 additions & 0 deletions Antistasi Dev Deploy Benchmark/Results.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static Antistasi_Dev_Deploy_Shared.Registary;

namespace Antistasi_Dev_Deploy_Benchmark {
class Results {
public static string GetVersion(string FileName) {
return FileVersionInfo.GetVersionInfo(FileName).FileVersion;
}
public static string GetCPU() {
return Fetch(@"Computer\HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\0", @"ProcessorNameString", "CPU NOT FOUND");
}
public static double GetOutMB() {
return 0;
}
public static double GetOutCount() {
return 1;
}
public static List<string> CompileResults() {
return new List<string>();
}
}
}
2 changes: 1 addition & 1 deletion Antistasi Dev Deploy Shared/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@
// 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("4.4.13.7")]
[assembly: AssemblyVersion("4.4.14.7")]
[assembly: NeutralResourcesLanguage("en-ZA")]

0 comments on commit 1494737

Please sign in to comment.