Skip to content

Commit

Permalink
Fix code generation support for .NET 4.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
sharwell committed Apr 28, 2014
1 parent 2ace0f6 commit 6472972
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -271,6 +271,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 6472972

Please sign in to comment.