To run this application you must install net core что это
Completing the CAPTCHA proves you are a human and gives you temporary access to the web property.
What can I do to prevent this in the future?
If you are on a personal connection, like at home, you can run an anti-virus scan on your device to make sure it is not infected with malware.
If you are at an office or shared network, you can ask the network administrator to run a scan across the network looking for misconfigured or infected devices.
Another way to prevent getting this page in the future is to use Privacy Pass. You may need to download version 2.0 now from the Chrome Web Store.
Cloudflare Ray ID: 71aac6b998b99b69 • Your IP : 82.102.23.104 • Performance & security by Cloudflare
Disable Message "To run this application you must install .net core"
I am developing an app that test .netcore desktop dependencies on client computers.
First I have checked if the necesary windows updates(win7) are installed followed by a check for the .netcore runtime with a net framework 452 app.
Finally just to be sure i would like to run a .netcore app without UI to make sure everything is fine, it has a custom exit code. But of course I get the message "to run this application you must install .net core" in case runtime is not installed.
My question is, is there a way to hide this message? I want to install everything silently then run a test, there is no need for the Yes/No Dialog redirecting to a website.
Как исправить ошибку «To run this application, you must install .NET Core»?

Эмм. Официально, .NET Core / .NET 5+ не будут поставляться вместе с виндой. А под линуксом оно работает вполне нормально.
И зачем делать шаг назад на .NET FW? Типа сэкономить пару мегабайт — это стоит того чтобы не иметь доступа к новым API?

Есть несколько вариантов:
1. Использовать .net 6 — он умеет тащить за собой не весь рантайм, а только то что нужно для работы.
По крайней мере Hello World в 12мб получалось уместить (single file + self contained + assembly trimming)
2. Поставлять программу вместе со скриптом, который проверит, установлен ли .net runtime и установит его сам, скачав из интернета
3. Забить и оставить как есть (засунуть в архив)
4. Использовать .NET Framework, который идёт на винде из коробки, но имхо — это шаг назад по всем параметрам, и так делать не стоит.