admin管理员组文章数量:1391969
I'm following this tutorial to run a Azure Streaming Analytics Job with the VS Code Plugin. As the prerequisite section states, I have installed the latest .Net version (which is 9.0) from the official site.
I can create an ASA project, add inputs, and set up the job, but when I try to run the query, I get the following error:
[2025/03/13 06:48:06 PM] [Error] No valid .NET Core version found, please install .NET Core 3.1 or .NET 6.0 from
I tried installing the specific versions, but the Official Site doesn't list those anymore. I'm trying this on a MacBook Pro (Intel).
Any help on this is greatly appreciated.
I'm following this tutorial to run a Azure Streaming Analytics Job with the VS Code Plugin. As the prerequisite section states, I have installed the latest .Net version (which is 9.0) from the official site.
I can create an ASA project, add inputs, and set up the job, but when I try to run the query, I get the following error:
[2025/03/13 06:48:06 PM] [Error] No valid .NET Core version found, please install .NET Core 3.1 or .NET 6.0 from https://dotnet.microsoft/download
I tried installing the specific versions, but the Official Site doesn't list those anymore. I'm trying this on a MacBook Pro (Intel).
Any help on this is greatly appreciated.
Share Improve this question edited Mar 18 at 23:36 qkfang 1,7851 gold badge1 silver badge20 bronze badges asked Mar 14 at 1:57 Amila De SilvaAmila De Silva 7164 silver badges7 bronze badges 2 |1 Answer
Reset to default 0The error means the plugin needs .NET Core 3.1 or .NET 6.0, but these versions are no longer available on the main .NET download page.
You can still get .NET Core 3.1 from this archive or download .NET 6.0 from this archive.
Pick the version that matches your system (e.g., macOS Intel).
After installing, run this command in your terminal to check the .NET Version:
dotnet --version
If the version is not correct, update the PATH settings or use tools like asdf or brew to manage different .NET versions.
Check that the system uses the correct version by running: bash dotnet --version
If it doesn't show the required version, you may need to update the PATH or use a version manager like asdf
or brew
.
Please refer this SO link for supporting version for Azure Stream Analytics with dotnet.
本文标签: Problem while using VS Code Plugin for Azure Stream AnalyticsStack Overflow
版权声明:本文标题:Problem while using VS Code Plugin for Azure Stream Analytics - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744676654a2619152.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
bash dotnet --version
If it doesn't show the required version, you may need to update your PATH or use a version manager likeasdf
orbrew
. – Sampath Commented Mar 14 at 5:48