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
Apparently this is due to the fact that : To use Tr in xaml without namespace we need to export a namespace in the standard xaml namespace. This is done in the file AddWPFXAMLStandardNameSpace.cs
This only works when we use the corresponding assembly in an another assembly.
So as Costura repack all assemblies in one we need to access Tr with a namespace again in all xaml that will be repack in the same assembly by costura.
So with costura you need to replace all your Tr and other xaml markups defined in CodingSeb.Localization.WPF.
Activity
rukshanfonseka commentedon Nov 9, 2023
I think this is because the version of Fody is newer when Costura is installed and so the project fails to compile.
codingseb commentedon Nov 23, 2023
Apparently this is due to the fact that : To use
Tr
in xaml without namespace we need to export a namespace in the standard xaml namespace. This is done in the file AddWPFXAMLStandardNameSpace.csThis only works when we use the corresponding assembly in an another assembly.
So as Costura repack all assemblies in one we need to access
Tr
with a namespace again in all xaml that will be repack in the same assembly by costura.So with costura you need to replace all your
Tr
and other xaml markups defined inCodingSeb.Localization.WPF
.