It was not possible to find any compatible framework version when trying to scaffold












0















I am trying to simply follow this guide to set up a simple app with authentication.



When I try entering this command



dotnet aspnet-codegenerator identity -dc WebApp1.Data.ApplicationDbContext --files "Account.Register;Account.Login;Account.Logout"


To scaffold a few pages, I get this error




It was not possible to find any compatible framework version
The specified framework 'Microsoft.NETCore.App', version '2.1.6' was not found.
- Check application dependencies and target a framework version installed at:
C:Program Filesdotnet
- Installing .NET Core prerequisites might help resolve this problem:
http://go.microsoft.com/fwlink/?LinkID=798306&clcid=0x409
- The .NET Core framework and SDK can be installed from:
https://aka.ms/dotnet-download
- The following versions are installed:
1.0.1 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
1.0.4 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
1.0.5 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
1.0.13 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
1.1.0 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
1.1.1 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
1.1.2 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
1.1.10 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
2.0.6 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
2.0.9 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
2.1.0-preview1-26216-03 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
2.1.4 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
2.1.5 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]




I added the nuget package Microsoft.EntityFrameworkCore.Design as suggested here but with no effect.



I followed the link to downlowd '.NET core prerequisites`, but this just has the .net sdk...



I have not specified any 2.1.6 anywhere in my project - where would that even be? I also searched the internet for .net core framework 2.1.6 but that doesn't exist..



my csproj file looks like this





<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<UserSecretsId>aspnet-SocFace-D83867AE-294A-4562-B8D7-10674D5B4C05</UserSecretsId>
</PropertyGroup>

<ItemGroup>
<None Update="app.db" CopyToOutputDirectory="PreserveNewest" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.4" />
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.5" PrivateAssets="All" />
</ItemGroup>




I tried including a version for Microsoft.AspNetCore.App like this:



<PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.5"/>


but it made no difference










share|improve this question





























    0















    I am trying to simply follow this guide to set up a simple app with authentication.



    When I try entering this command



    dotnet aspnet-codegenerator identity -dc WebApp1.Data.ApplicationDbContext --files "Account.Register;Account.Login;Account.Logout"


    To scaffold a few pages, I get this error




    It was not possible to find any compatible framework version
    The specified framework 'Microsoft.NETCore.App', version '2.1.6' was not found.
    - Check application dependencies and target a framework version installed at:
    C:Program Filesdotnet
    - Installing .NET Core prerequisites might help resolve this problem:
    http://go.microsoft.com/fwlink/?LinkID=798306&clcid=0x409
    - The .NET Core framework and SDK can be installed from:
    https://aka.ms/dotnet-download
    - The following versions are installed:
    1.0.1 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
    1.0.4 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
    1.0.5 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
    1.0.13 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
    1.1.0 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
    1.1.1 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
    1.1.2 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
    1.1.10 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
    2.0.6 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
    2.0.9 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
    2.1.0-preview1-26216-03 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
    2.1.4 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
    2.1.5 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]




    I added the nuget package Microsoft.EntityFrameworkCore.Design as suggested here but with no effect.



    I followed the link to downlowd '.NET core prerequisites`, but this just has the .net sdk...



    I have not specified any 2.1.6 anywhere in my project - where would that even be? I also searched the internet for .net core framework 2.1.6 but that doesn't exist..



    my csproj file looks like this





    <PropertyGroup>
    <TargetFramework>netcoreapp2.1</TargetFramework>
    <UserSecretsId>aspnet-SocFace-D83867AE-294A-4562-B8D7-10674D5B4C05</UserSecretsId>
    </PropertyGroup>

    <ItemGroup>
    <None Update="app.db" CopyToOutputDirectory="PreserveNewest" />
    </ItemGroup>

    <ItemGroup>
    <PackageReference Include="Microsoft.AspNetCore.App" />
    <PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" />
    <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.4" />
    <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.5" PrivateAssets="All" />
    </ItemGroup>




    I tried including a version for Microsoft.AspNetCore.App like this:



    <PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.5"/>


    but it made no difference










    share|improve this question



























      0












      0








      0








      I am trying to simply follow this guide to set up a simple app with authentication.



      When I try entering this command



      dotnet aspnet-codegenerator identity -dc WebApp1.Data.ApplicationDbContext --files "Account.Register;Account.Login;Account.Logout"


      To scaffold a few pages, I get this error




      It was not possible to find any compatible framework version
      The specified framework 'Microsoft.NETCore.App', version '2.1.6' was not found.
      - Check application dependencies and target a framework version installed at:
      C:Program Filesdotnet
      - Installing .NET Core prerequisites might help resolve this problem:
      http://go.microsoft.com/fwlink/?LinkID=798306&clcid=0x409
      - The .NET Core framework and SDK can be installed from:
      https://aka.ms/dotnet-download
      - The following versions are installed:
      1.0.1 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      1.0.4 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      1.0.5 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      1.0.13 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      1.1.0 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      1.1.1 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      1.1.2 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      1.1.10 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      2.0.6 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      2.0.9 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      2.1.0-preview1-26216-03 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      2.1.4 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      2.1.5 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]




      I added the nuget package Microsoft.EntityFrameworkCore.Design as suggested here but with no effect.



      I followed the link to downlowd '.NET core prerequisites`, but this just has the .net sdk...



      I have not specified any 2.1.6 anywhere in my project - where would that even be? I also searched the internet for .net core framework 2.1.6 but that doesn't exist..



      my csproj file looks like this





      <PropertyGroup>
      <TargetFramework>netcoreapp2.1</TargetFramework>
      <UserSecretsId>aspnet-SocFace-D83867AE-294A-4562-B8D7-10674D5B4C05</UserSecretsId>
      </PropertyGroup>

      <ItemGroup>
      <None Update="app.db" CopyToOutputDirectory="PreserveNewest" />
      </ItemGroup>

      <ItemGroup>
      <PackageReference Include="Microsoft.AspNetCore.App" />
      <PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" />
      <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.4" />
      <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.5" PrivateAssets="All" />
      </ItemGroup>




      I tried including a version for Microsoft.AspNetCore.App like this:



      <PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.5"/>


      but it made no difference










      share|improve this question
















      I am trying to simply follow this guide to set up a simple app with authentication.



      When I try entering this command



      dotnet aspnet-codegenerator identity -dc WebApp1.Data.ApplicationDbContext --files "Account.Register;Account.Login;Account.Logout"


      To scaffold a few pages, I get this error




      It was not possible to find any compatible framework version
      The specified framework 'Microsoft.NETCore.App', version '2.1.6' was not found.
      - Check application dependencies and target a framework version installed at:
      C:Program Filesdotnet
      - Installing .NET Core prerequisites might help resolve this problem:
      http://go.microsoft.com/fwlink/?LinkID=798306&clcid=0x409
      - The .NET Core framework and SDK can be installed from:
      https://aka.ms/dotnet-download
      - The following versions are installed:
      1.0.1 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      1.0.4 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      1.0.5 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      1.0.13 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      1.1.0 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      1.1.1 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      1.1.2 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      1.1.10 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      2.0.6 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      2.0.9 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      2.1.0-preview1-26216-03 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      2.1.4 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]
      2.1.5 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]




      I added the nuget package Microsoft.EntityFrameworkCore.Design as suggested here but with no effect.



      I followed the link to downlowd '.NET core prerequisites`, but this just has the .net sdk...



      I have not specified any 2.1.6 anywhere in my project - where would that even be? I also searched the internet for .net core framework 2.1.6 but that doesn't exist..



      my csproj file looks like this





      <PropertyGroup>
      <TargetFramework>netcoreapp2.1</TargetFramework>
      <UserSecretsId>aspnet-SocFace-D83867AE-294A-4562-B8D7-10674D5B4C05</UserSecretsId>
      </PropertyGroup>

      <ItemGroup>
      <None Update="app.db" CopyToOutputDirectory="PreserveNewest" />
      </ItemGroup>

      <ItemGroup>
      <PackageReference Include="Microsoft.AspNetCore.App" />
      <PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" />
      <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="2.1.4" />
      <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.5" PrivateAssets="All" />
      </ItemGroup>




      I tried including a version for Microsoft.AspNetCore.App like this:



      <PackageReference Include="Microsoft.AspNetCore.App" Version="2.1.5"/>


      but it made no difference







      c# asp.net-core visual-studio-code .net-core scaffolding






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 13 '18 at 9:36







      Bassie

















      asked Nov 13 '18 at 8:59









      BassieBassie

      3,8281948




      3,8281948
























          1 Answer
          1






          active

          oldest

          votes


















          0














          Here's a version of your Error Message to make clear what's happening:




          The specified framework 'Microsoft.NETCore.App', version '2.1.6' was not found.



          The following versions are installed:



          1.0.1 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]

          ...
          2.1.5 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]




          Apparently you've specified the target framework to be version 2.1.6, while the highest version you have installed is 2.1.5. Install version 2.1.6 (or re-target to 2.1.5) and you should be good to go.



          EDIT:

          According to the Microsoft.NETCore.App page on NuGet version 2.1.6 is a prerelease version. Same for Microsoft.AspNetCore.App. Explicitly setting the versions for your references should solve this issue.






          share|improve this answer


























          • Thanks for your answer rick. I just don't understand though - I hav enot specified anything to use version 2.1.6 anywhere - do you know where I might be able to check that? Searching the entire projecct for 2.1.6 returns nothing. I also searched google for Microsoft.NETCore.App 2.1.6 and it doesn't even seem to exist.. Really appreciate any advice you can give as this is driving crazy

            – Bassie
            Nov 13 '18 at 9:25













          • Right click the project in VS and select Edit <projectname>.csproj. You should see the TargetFramework there.

            – rickvdbosch
            Nov 13 '18 at 9:29











          • I am using VSCode

            – Bassie
            Nov 13 '18 at 9:31











          • I've added my csproj contents to the question

            – Bassie
            Nov 13 '18 at 9:32











          Your Answer






          StackExchange.ifUsing("editor", function () {
          StackExchange.using("externalEditor", function () {
          StackExchange.using("snippets", function () {
          StackExchange.snippets.init();
          });
          });
          }, "code-snippets");

          StackExchange.ready(function() {
          var channelOptions = {
          tags: "".split(" "),
          id: "1"
          };
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function() {
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled) {
          StackExchange.using("snippets", function() {
          createEditor();
          });
          }
          else {
          createEditor();
          }
          });

          function createEditor() {
          StackExchange.prepareEditor({
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader: {
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          },
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53277229%2fit-was-not-possible-to-find-any-compatible-framework-version-when-trying-to-scaf%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          0














          Here's a version of your Error Message to make clear what's happening:




          The specified framework 'Microsoft.NETCore.App', version '2.1.6' was not found.



          The following versions are installed:



          1.0.1 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]

          ...
          2.1.5 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]




          Apparently you've specified the target framework to be version 2.1.6, while the highest version you have installed is 2.1.5. Install version 2.1.6 (or re-target to 2.1.5) and you should be good to go.



          EDIT:

          According to the Microsoft.NETCore.App page on NuGet version 2.1.6 is a prerelease version. Same for Microsoft.AspNetCore.App. Explicitly setting the versions for your references should solve this issue.






          share|improve this answer


























          • Thanks for your answer rick. I just don't understand though - I hav enot specified anything to use version 2.1.6 anywhere - do you know where I might be able to check that? Searching the entire projecct for 2.1.6 returns nothing. I also searched google for Microsoft.NETCore.App 2.1.6 and it doesn't even seem to exist.. Really appreciate any advice you can give as this is driving crazy

            – Bassie
            Nov 13 '18 at 9:25













          • Right click the project in VS and select Edit <projectname>.csproj. You should see the TargetFramework there.

            – rickvdbosch
            Nov 13 '18 at 9:29











          • I am using VSCode

            – Bassie
            Nov 13 '18 at 9:31











          • I've added my csproj contents to the question

            – Bassie
            Nov 13 '18 at 9:32
















          0














          Here's a version of your Error Message to make clear what's happening:




          The specified framework 'Microsoft.NETCore.App', version '2.1.6' was not found.



          The following versions are installed:



          1.0.1 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]

          ...
          2.1.5 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]




          Apparently you've specified the target framework to be version 2.1.6, while the highest version you have installed is 2.1.5. Install version 2.1.6 (or re-target to 2.1.5) and you should be good to go.



          EDIT:

          According to the Microsoft.NETCore.App page on NuGet version 2.1.6 is a prerelease version. Same for Microsoft.AspNetCore.App. Explicitly setting the versions for your references should solve this issue.






          share|improve this answer


























          • Thanks for your answer rick. I just don't understand though - I hav enot specified anything to use version 2.1.6 anywhere - do you know where I might be able to check that? Searching the entire projecct for 2.1.6 returns nothing. I also searched google for Microsoft.NETCore.App 2.1.6 and it doesn't even seem to exist.. Really appreciate any advice you can give as this is driving crazy

            – Bassie
            Nov 13 '18 at 9:25













          • Right click the project in VS and select Edit <projectname>.csproj. You should see the TargetFramework there.

            – rickvdbosch
            Nov 13 '18 at 9:29











          • I am using VSCode

            – Bassie
            Nov 13 '18 at 9:31











          • I've added my csproj contents to the question

            – Bassie
            Nov 13 '18 at 9:32














          0












          0








          0







          Here's a version of your Error Message to make clear what's happening:




          The specified framework 'Microsoft.NETCore.App', version '2.1.6' was not found.



          The following versions are installed:



          1.0.1 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]

          ...
          2.1.5 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]




          Apparently you've specified the target framework to be version 2.1.6, while the highest version you have installed is 2.1.5. Install version 2.1.6 (or re-target to 2.1.5) and you should be good to go.



          EDIT:

          According to the Microsoft.NETCore.App page on NuGet version 2.1.6 is a prerelease version. Same for Microsoft.AspNetCore.App. Explicitly setting the versions for your references should solve this issue.






          share|improve this answer















          Here's a version of your Error Message to make clear what's happening:




          The specified framework 'Microsoft.NETCore.App', version '2.1.6' was not found.



          The following versions are installed:



          1.0.1 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]

          ...
          2.1.5 at [C:Program FilesdotnetsharedMicrosoft.NETCore.App]




          Apparently you've specified the target framework to be version 2.1.6, while the highest version you have installed is 2.1.5. Install version 2.1.6 (or re-target to 2.1.5) and you should be good to go.



          EDIT:

          According to the Microsoft.NETCore.App page on NuGet version 2.1.6 is a prerelease version. Same for Microsoft.AspNetCore.App. Explicitly setting the versions for your references should solve this issue.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited Nov 13 '18 at 9:40

























          answered Nov 13 '18 at 9:23









          rickvdboschrickvdbosch

          3,93121526




          3,93121526













          • Thanks for your answer rick. I just don't understand though - I hav enot specified anything to use version 2.1.6 anywhere - do you know where I might be able to check that? Searching the entire projecct for 2.1.6 returns nothing. I also searched google for Microsoft.NETCore.App 2.1.6 and it doesn't even seem to exist.. Really appreciate any advice you can give as this is driving crazy

            – Bassie
            Nov 13 '18 at 9:25













          • Right click the project in VS and select Edit <projectname>.csproj. You should see the TargetFramework there.

            – rickvdbosch
            Nov 13 '18 at 9:29











          • I am using VSCode

            – Bassie
            Nov 13 '18 at 9:31











          • I've added my csproj contents to the question

            – Bassie
            Nov 13 '18 at 9:32



















          • Thanks for your answer rick. I just don't understand though - I hav enot specified anything to use version 2.1.6 anywhere - do you know where I might be able to check that? Searching the entire projecct for 2.1.6 returns nothing. I also searched google for Microsoft.NETCore.App 2.1.6 and it doesn't even seem to exist.. Really appreciate any advice you can give as this is driving crazy

            – Bassie
            Nov 13 '18 at 9:25













          • Right click the project in VS and select Edit <projectname>.csproj. You should see the TargetFramework there.

            – rickvdbosch
            Nov 13 '18 at 9:29











          • I am using VSCode

            – Bassie
            Nov 13 '18 at 9:31











          • I've added my csproj contents to the question

            – Bassie
            Nov 13 '18 at 9:32

















          Thanks for your answer rick. I just don't understand though - I hav enot specified anything to use version 2.1.6 anywhere - do you know where I might be able to check that? Searching the entire projecct for 2.1.6 returns nothing. I also searched google for Microsoft.NETCore.App 2.1.6 and it doesn't even seem to exist.. Really appreciate any advice you can give as this is driving crazy

          – Bassie
          Nov 13 '18 at 9:25







          Thanks for your answer rick. I just don't understand though - I hav enot specified anything to use version 2.1.6 anywhere - do you know where I might be able to check that? Searching the entire projecct for 2.1.6 returns nothing. I also searched google for Microsoft.NETCore.App 2.1.6 and it doesn't even seem to exist.. Really appreciate any advice you can give as this is driving crazy

          – Bassie
          Nov 13 '18 at 9:25















          Right click the project in VS and select Edit <projectname>.csproj. You should see the TargetFramework there.

          – rickvdbosch
          Nov 13 '18 at 9:29





          Right click the project in VS and select Edit <projectname>.csproj. You should see the TargetFramework there.

          – rickvdbosch
          Nov 13 '18 at 9:29













          I am using VSCode

          – Bassie
          Nov 13 '18 at 9:31





          I am using VSCode

          – Bassie
          Nov 13 '18 at 9:31













          I've added my csproj contents to the question

          – Bassie
          Nov 13 '18 at 9:32





          I've added my csproj contents to the question

          – Bassie
          Nov 13 '18 at 9:32


















          draft saved

          draft discarded




















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid



          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.


          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53277229%2fit-was-not-possible-to-find-any-compatible-framework-version-when-trying-to-scaf%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Full-time equivalent

          Bicuculline

          さくらももこ