Skip to content
This repository has been archived by the owner on Mar 24, 2020. It is now read-only.

Commit

Permalink
Formated code, bumped version to 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas committed Apr 15, 2013
1 parent bab1d70 commit aa2633f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
9 changes: 4 additions & 5 deletions src/Wia/Commands/WebsiteContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion src/Wia/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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 <command> [--help]")]

0 comments on commit aa2633f

Please sign in to comment.