From 99e93e721e474985703791a25b566f1e5dc9cd71 Mon Sep 17 00:00:00 2001 From: Dean Date: Wed, 25 Feb 2015 08:47:59 +0000 Subject: [PATCH] - Updated version - Confirmed that solution works in VS2015 --- HtmlMinifier.Tests/Properties/AssemblyInfo.cs | 4 ++-- ViewMinifier/Program.cs | 10 ++++++++++ ViewMinifier/Properties/AssemblyInfo.cs | 6 +++--- 3 files changed, 15 insertions(+), 5 deletions(-) diff --git a/HtmlMinifier.Tests/Properties/AssemblyInfo.cs b/HtmlMinifier.Tests/Properties/AssemblyInfo.cs index f7eb9dd..f8a1590 100644 --- a/HtmlMinifier.Tests/Properties/AssemblyInfo.cs +++ b/HtmlMinifier.Tests/Properties/AssemblyInfo.cs @@ -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")] diff --git a/ViewMinifier/Program.cs b/ViewMinifier/Program.cs index 3e6696c..2a5d998 100644 --- a/ViewMinifier/Program.cs +++ b/ViewMinifier/Program.cs @@ -40,6 +40,11 @@ static void Main(string[] args) Console.WriteLine("Minification Complete"); } + /// + /// Gets the directories and subdirectories for a given path. + /// + /// The path + /// A list of the directories. public static IEnumerable GetDirectories(string path) { // Get all subdirectories @@ -54,6 +59,11 @@ public static IEnumerable GetDirectories(string path) return allDirectories; } + /// + /// Get the folder path + /// + /// + /// A string with the folder path private static string GetFolderpath(string[] args) { // Check that the folder path is provided diff --git a/ViewMinifier/Properties/AssemblyInfo.cs b/ViewMinifier/Properties/AssemblyInfo.cs index 337438b..6fa0571 100644 --- a/ViewMinifier/Properties/AssemblyInfo.cs +++ b/ViewMinifier/Properties/AssemblyInfo.cs @@ -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("")] @@ -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")]