FHIR Chat · Torinox · dotnet

Stream: dotnet

Topic: Torinox


view this post on Zulip Grahame Grieve (Jun 17 2020 at 20:24):

I tried to use Torinox. I followed the install instructions, but when running, I get:

view this post on Zulip Grahame Grieve (Jun 17 2020 at 20:24):

It was not possible to find any compatible framework version
The framework 'Microsoft.NETCore.App', version '2.1.0' was not found.
  - The following frameworks were found:
      3.1.5 at [C:\Program Files\dotnet\shared\Microsoft.NETCore.App]

You can resolve the problem by installing the specified framework and/or SDK.

The specified framework can be found at:
  - https://aka.ms/dotnet-core-applaunch?framework=Microsoft.NETCore.App&framework_version=2.1.0&arch=x64&rid=win10-x64

view this post on Zulip Grahame Grieve (Jun 17 2020 at 20:25):

the specified framework says that it doesn't exist

view this post on Zulip Vassil Peytchev (Jun 17 2020 at 20:40):

The latest 2.1 .Net core version is 2.1.19, maybe that will work?

view this post on Zulip Christiaan Knaap (Jun 18 2020 at 06:13):

Direct link for 2.1.19 for MacOS: here
I have runtimes 2.2.4 and 2.2.7 and Torinox is running happily, so there is some flexibility in the 2.x range.

view this post on Zulip Martijn Harthoorn (Jun 18 2020 at 06:57):

@Grahame Grieve - that provided link by dotnet is a sort of empty page indeed. The full page of 2.1 (for all OSes) downloads is here: https://dotnet.microsoft.com/download/dotnet-core/2.1

view this post on Zulip Martijn Harthoorn (Jun 19 2020 at 06:09):

We'll have a better link with the next release of Simplifier.

view this post on Zulip Muhammad Adnan (Jun 19 2020 at 09:13):

I was able to install Torinox by following the install instructions.
you can also verify which framework is installed using the command mentioned here.

C:\ Get-ChildItem 'HKLM:\SOFTWARE\Microsoft\NET Framework Setup\NDP' -recurse |

Get-ItemProperty -name Version,Release -EA 0 |
Where { $_.PSChildName -match '^(?!S)\p{L}'} |
Select PSChildName, Version, Release


OUTPUT:

PSChildName Version Release
----------- ------- -------
v2.0.50727 2.0.50727.4927
v3.0 3.0.30729.4926
Windows Communication Foundation 3.0.4506.4926
Windows Presentation Foundation 3.0.6920.4902
v3.5 3.5.30729.4926
Client 4.8.03752 528040
Full 4.8.03752 528040
Client 4.0.0.0


Last updated: Apr 12 2022 at 19:14 UTC