Is it impossible to refer to an assembly with spaces in its name? Do I need to rename my assemblies so that they do not contain spaces? There is no way to avoid spaces? I cannot find so many examples of people who have this problem, not to mention any solutions ...
XAML example:
<UserControl x:Class="SomeClass" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:Some.Namespace;assembly=Some Assembly With Spaces In The Name" >
And this is the error that the compiler gives when trying to do this:
Unknown build error, '' clr-namespace: Some.Namespace; assembly = some assembly with spaces in the name 'display URI is not valid. Line 4 Position 2. '
Putting 'or' around the assembly name does not help.
xaml
Taudris
source share