Skip to content

Commit

Permalink
Merge pull request #46 from sharwell/support-net451
Browse files Browse the repository at this point in the history
Fix code generation support for .NET 4.5.1
  • Loading branch information
sharwell committed Apr 28, 2014
2 parents 6789bd6 + 6472972 commit d206a6e
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -285,6 +285,8 @@ public bool Execute()
string framework = TargetFrameworkVersion;
if (string.IsNullOrEmpty(framework))
framework = "v2.0";
if (framework == "v4.5.1")
framework = "v4.5";

string language;
if (TargetLanguage.Equals("CSharp"))
Expand Down

0 comments on commit d206a6e

Please sign in to comment.