I installed .NET 6 GA Arm64 SDK and ran the build command which worked successfully but when I try running the dotnet test command, it fails and throws an error.
Steps to reproduce:
- After cloning the repository,
cd prose/dsl-samples/tutorial/part1a.
- Run
dotnet build.
- Run
dotnet test. It will throw the following error:
Testhost process exited with error: It was not possible to find any compatible framework version
The framework 'Microsoft.NETCore.App', version '2.1.0' (arm64) was not found.
- The following frameworks were found:
6.0.0 at [/usr/local/share/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=arm64&rid=osx.11.1-arm64
. Please check the diagnostic logs for more information.
Test Run Aborted.
I installed .NET 6 GA Arm64 SDK and ran the build command which worked successfully but when I try running the
dotnet testcommand, it fails and throws an error.Steps to reproduce:
cd prose/dsl-samples/tutorial/part1a.dotnet build.dotnet test. It will throw the following error: