Skip to content

Commit

Permalink
fixed TsGui_DHCPServer not getting all values with multiple NICs. Upd…
Browse files Browse the repository at this point in the history
…ated assembly info for 1.0.6.10
  • Loading branch information
Mike Pohatu committed Jun 16, 2019
1 parent eecac90 commit bced8fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion TsGui/Control/HardwareEvaluator.cs
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ private void Evaluate()
}

string svr = (string)m["DHCPServer"];
if (svr != null) { this.DHCPServer = svr; }
if (string.IsNullOrWhiteSpace(svr) == false) { this.DHCPServer = AppendToStringList(this.DHCPServer, svr); }
}
}

Expand Down
6 changes: 3 additions & 3 deletions TsGui/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("20Road")]
[assembly: AssemblyProduct("Task Sequence Gui")]
[assembly: AssemblyCopyright("Copyright © Mike Pohatu 2018")]
[assembly: AssemblyCopyright("Copyright © Mike Pohatu 2019")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand Down 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.0.6.9")]
[assembly: AssemblyFileVersion("1.0.6.9")]
[assembly: AssemblyVersion("1.0.6.10")]
[assembly: AssemblyFileVersion("1.0.6.10")]
[assembly: NeutralResourcesLanguage("")]

0 comments on commit bced8fe

Please sign in to comment.