diff --git a/src/Wia/Commands/WebsiteContext.cs b/src/Wia/Commands/WebsiteContext.cs index a65b44c..b2bf880 100644 --- a/src/Wia/Commands/WebsiteContext.cs +++ b/src/Wia/Commands/WebsiteContext.cs @@ -45,11 +45,10 @@ public WebsiteContext() { public bool ExitAtNextCheck { get; set; } public string GetWebProjectDirectory() { - if(WebProjectName==".") { - return CurrentDirectory; - } else { - return Path.Combine(CurrentDirectory, WebProjectName); - } + if (WebProjectName == ".") { + return CurrentDirectory; + } + return Path.Combine(CurrentDirectory, WebProjectName); } public bool HasAdministratorPrivileges() { diff --git a/src/Wia/Properties/AssemblyInfo.cs b/src/Wia/Properties/AssemblyInfo.cs index e7028c0..158a8a7 100644 --- a/src/Wia/Properties/AssemblyInfo.cs +++ b/src/Wia/Properties/AssemblyInfo.cs @@ -37,6 +37,6 @@ // 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.0.*")] +[assembly: AssemblyVersion("1.0.1.*")] [assembly: AssemblyInformationalVersionAttribute("1.0")] [assembly: AssemblyUsage("Usage: wia [--help]")] \ No newline at end of file