3

I have looked for this everywhere but cannot understand what to do.

I understand that UWP apps need their dependencies installed, but do they also need .Net/.Net Core installed on the client machine?

What I am doing: Using another UWP app and the PackageManager class, I am making my own installer. (UWP installs UWP)

So I know I will have to install the dependencies (appx files) too, but do I also have to make sure that .Net/.Net Core is installed? Thanks!

admin
  • 55
  • 5
  • @PanagiotisKanavos Ok. Thanks! Current windows means windows 10 right? Well it doesn't matter because that is all I am targeting! – admin Jun 03 '21 at 12:42

1 Answers1

0

but do they also need .Net/.Net Core installed on the client machine?

No. A UWP app targets a natively implemented SDK version that doesn't have any dependency on .NET Core.

The C# language projection is indeed based on .NET but the CoreCLR (.NET Core runtime) is not used at runtime so you don't have to install any addtional .NET stuff on the client machines where your UWP app is run.

mm8
  • 163,881
  • 10
  • 57
  • 88