Skip to content

Commit

Permalink
- Updated version
Browse files Browse the repository at this point in the history
- Confirmed that solution works in VS2015
  • Loading branch information
deanhume committed Feb 25, 2015
1 parent bf96331 commit 99e93e7
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions HtmlMinifier.Tests/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,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("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
[assembly: AssemblyVersion("1.3.0.0")]
[assembly: AssemblyFileVersion("1.3.0.0")]
10 changes: 10 additions & 0 deletions ViewMinifier/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,11 @@ static void Main(string[] args)
Console.WriteLine("Minification Complete");
}

/// <summary>
/// Gets the directories and subdirectories for a given path.
/// </summary>
/// <param name="path">The path</param>
/// <returns>A list of the directories.</returns>
public static IEnumerable<string> GetDirectories(string path)
{
// Get all subdirectories
Expand All @@ -54,6 +59,11 @@ public static IEnumerable<string> GetDirectories(string path)
return allDirectories;
}

/// <summary>
/// Get the folder path
/// </summary>
/// <param name="args"></param>
/// <returns>A string with the folder path</returns>
private static string GetFolderpath(string[] args)
{
// Check that the folder path is provided
Expand Down
6 changes: 3 additions & 3 deletions ViewMinifier/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("HtmlMinifier")]
[assembly: AssemblyCopyright("Copyright Dean Hume © Microsoft 2014")]
[assembly: AssemblyCopyright("Copyright Dean Hume © 2015")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -32,5 +32,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("1.2.0.0")]
[assembly: AssemblyFileVersion("1.2.0.0")]
[assembly: AssemblyVersion("1.3.0.0")]
[assembly: AssemblyFileVersion("1.3.0.0")]

0 comments on commit 99e93e7

Please sign in to comment.