Skip to content

Instantly share code, notes, and snippets.

@davkean
Last active July 27, 2018 06:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save davkean/ad1b3867a67908272bafe5686f9bb65e to your computer and use it in GitHub Desktop.
Save davkean/ad1b3867a67908272bafe5686f9bb65e to your computer and use it in GitHub Desktop.

Framework menu doesn't show when using different friendly names of the same framework:

  1. Create two projects:
<TargetFrameworks>netcoreapp2.1;net4.6</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1;net46</TargetFrameworks>

Expected: For the Framework menu to show

Actual: It doesn't show

Framework menu doesn't show when using same order but different number of frameworks

  1. Create two projects:
<TargetFrameworks>netcoreapp2.1;net46;netstandard2.1</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1;net46</TargetFrameworks>

Expected: For the Framework menu to show with intersection

Actual: It doesn't show

Framework menu chooses wrong default when choosing multiple start projects:

  1. Create two projects
<TargetFrameworks>netcoreapp2.1;net46</TargetFrameworks>
<TargetFrameworks>netcoreapp2.1;net46</TargetFrameworks>
  1. Right-click first project, set as startup project and Change Debug Framework to net46
  2. Right-click second project, set as startup project and Change Debug Framework to net46
  3. Make both startup projects

Expected: Framework menu to be set to net46

Actual: Framework menu set to first netcoreapp2.1

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment