Building as an external library is confusing. #194
-
|
I've recently made some changes to my fork of DevWinUI, and they work in the sample app, but I want to test them in my own app. Building the DevWinUI csproj in its original slnx works. What should I be doing differently? I have a reference to |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Hi @AlexanderBlackman Currently, we support Please check your net10.0-windows10.0.22621.0Also, whenever you switch between Debug and Release, make sure to:
This is necessary because the Release configuration targets multiple frameworks, while Debug currently targets only a single framework. For a simpler fix, you can edit |
Beta Was this translation helpful? Give feedback.
Hi @AlexanderBlackman
I think this is related to the
TargetFrameworkconfiguration.Currently, we support
net8,net9, andnet10targeting Windows 10 (19041). However, for faster debugging, I temporarily limited the Debug configuration tonet10only. In addition, our shader library only supports22621+and does not work with19041.Please check your
TargetFramework. In the Debug configuration, it should be:Also, whenever you switch between Debug and Release, make sure to:
binandobjfolders. (or just run our Clean-obj-bin.bat script)This is necessary because the Release configuration t…