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

Commit

Permalink
Browse files Browse the repository at this point in the history
Show "C# 5.0" in upgrade project view if .NET 4.5 is installed.
  • Loading branch information
dgrunwald committed Mar 1, 2012
1 parent 7eebbb8 commit 464455b
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -90,7 +90,7 @@ public override void StartBuild(ProjectBuildOptions options, IBuildFeedbackSink


static readonly CompilerVersion msbuild20 = new CompilerVersion(new Version(2, 0), "C# 2.0"); static readonly CompilerVersion msbuild20 = new CompilerVersion(new Version(2, 0), "C# 2.0");
static readonly CompilerVersion msbuild35 = new CompilerVersion(new Version(3, 5), "C# 3.0"); static readonly CompilerVersion msbuild35 = new CompilerVersion(new Version(3, 5), "C# 3.0");
static readonly CompilerVersion msbuild40 = new CompilerVersion(new Version(4, 0), "C# 4.0"); static readonly CompilerVersion msbuild40 = new CompilerVersion(new Version(4, 0), DotnetDetection.IsDotnet45Installed() ? "C# 5.0" : "C# 4.0");


public override CompilerVersion CurrentCompilerVersion { public override CompilerVersion CurrentCompilerVersion {
get { get {
Expand Down

0 comments on commit 464455b

Please sign in to comment.