-
Notifications
You must be signed in to change notification settings - Fork 637
Red Block displaying Internal Server Error #91
Comments
On a side note to this issues. I do see that the client bundle version on https://try.dot.net/ is:
whereas on this try-samples projects client bundle version is showing as:
Could it be that the Nuget package is outdated? |
This issue was resolved here #88 |
This issue was resolved here #88 |
I met the similar thing in my Computer too, the issue is solved with below steps: The enviornment: OS: Win 11 .NET SDKs: .NET Core 3.0 SDK, .NET Core 3.1 SDK, .NET 6.0 SDK, .NET 8.0 SDK installed. 1.Make sure you installed lastest version of "dotnet try" tool.If you install it with the command "dotnet tool install -g dotnet-try", you need unistall it first with: dotnet tool uninstall -g dotnet-try If you install it with the command "dotnet tool install -g Microsoft.dotnet-try", you need unistall it first with: dotnet tool uninstall -g Microsoft.dotnet-try Then install the latest verion of "dotnet try" with below command: dotnet tool install -g --add-source "https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet-tools/nuget/v3/index.json" Microsoft.dotnet-try In Windows, recommand to run above commands in "cmd" with admin permission. 2.Make sure you installed .NET 3.0 and .NET 3.1 SDKsYou can run below command to check: dotnet --list-sdks If you did not install them, download from below links and install them. https://dotnet.microsoft.com/en-us/download/dotnet/3.0 Note: .NET core 3.1 SDK's version is "3.1.416" so far. 3.Clone code with below command using git shellgit clone https://github.com/dotnet/try-samples 4.Create global.json at the root of the folder "try-samples":The content is below: {
"sdk": {
"version": "3.1.416"
}
} Note: the version "3.1.416" here should be the same as in step 2. 5.Try to compile it with "dotnet try verify" commandcd try-samples/
dotnet try verify If no exceptions happened, jump to next step below. 6.Run "dotnet try" command to open the web in browser:dotnet try ".\101-linq-samples" 7.Try the examples from Web.May it be helpful for you. References: https://github.com/dotnet/try/blob/main/DotNetTryLocal.md This anwer first published in: |
Uh oh!
There was an error while loading. Please reload this page.
Hi I see an issue similar to this that's currently closed , however I wasn't able to reopen it so I'm linking it here in this issue.
#59
Here's a screenshot of the error.
I inspected the page and noticed this error in the
bundle.js?v=1.0.21418.2
JavaScript file:Hope this helps to fix the issue.
The text was updated successfully, but these errors were encountered: