Special Awareness When Trying Out Windows Copilot Runtime APIs in 1.7.0-experimental3 in Default WinUI3 Packaged App #5116
-
When trying to use the Windows Copilot Runtime APIs, such as Phi-Silica, in the 1.7.0-experimental3 release as Default WinUI3 Packaged App, you may encounter the following issues:
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
If you're experimenting with the Windows Copilot Runtime APIs, such as Phi-Silica, in the 1.7.0-experimental3 release, keep the following in mind to ensure a smooth setup:
These steps should help avoid common pitfalls and ensure a smoother development experience! 🚀 NOTE: |
Beta Was this translation helpful? Give feedback.
If you're experimenting with the Windows Copilot Runtime APIs, such as Phi-Silica, in the 1.7.0-experimental3 release, keep the following in mind to ensure a smooth setup:
Update your project file to set the target OS version >= 10.0.22621.0.
e.g.
<TargetFramework>net9.0-windows10.0.22621.0</TargetFramework>
Before clicking "Start Debugging," select the appropriate Solution Platform in Visual Studio.
Example: On an ARM machine, choose ARM64.
This step is important since default is x64 even you are in ARM machine.
These steps should help avoid common pitfalls and ensure a smoother development experience! 🚀
NOTE:
I have alrea…