i have the following in my App.xaml
"Path to configuration file is missing:"
any idea what this is related to? doesnt seem to be causing any runtime problems
<Application x:Class="TestApplication.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TestApplication">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="silver.xaml" />
<ResourceDictionary>
<local:AppBootstrapper x:Key="bootstrapper" />
</ResourceDictionary>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</Application>
This seems to work as im able to use the application, but in my designer i am always getting a blue underline on the <local:AppBootstrapper x:Key="bootstrapper" /> line with the following error:"Path to configuration file is missing:"
any idea what this is related to? doesnt seem to be causing any runtime problems