You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<_ResizetizerIsWPFCondition="'$(IsApplication)' == 'True' And '$(NuGetRuntimeIdentifier)' == 'win' And '$(TargetPlatformIdentifier)'=='Windows'">True</_ResizetizerIsWPF>
In my WPF project I added the following target to debug the build:
The images are not generated for my .NET Core 3.1 WPF project. I have verified that my app works as expected on Android, iOS, and UWP.
Looking at https://github.com/Redth/ResizetizerNT/blob/master/Resizetizer.NT/Resizetizer.NT.targets#L21 the
_ResizetizerIsWPF
variable is set using this expression:In my WPF project I added the following target to debug the build:
The output of the debug message is as follow:
So based on the check it looks like the
'$(NuGetRuntimeIdentifier)' == 'win'
check will not be true, as the$(NuGetRuntimeIdentifier)
is not set.The text was updated successfully, but these errors were encountered: