mirror of https://github.com/AMT-Cheif/Stylet.git
Fix the integration tests
This commit is contained in:
parent
db08349c02
commit
f45fe0fc9a
|
@ -1,14 +1,13 @@
|
|||
<Application x:Class="StyletIntegrationTests.App"
|
||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||
xmlns:s="https://github.com/canton7/Stylet"
|
||||
xmlns:local="clr-namespace:StyletIntegrationTests">
|
||||
<Application.Resources>
|
||||
<ResourceDictionary>
|
||||
<ResourceDictionary.MergedDictionaries>
|
||||
<ResourceDictionary>
|
||||
<local:Bootstrapper x:Key="bootstrapper"/>
|
||||
</ResourceDictionary>
|
||||
</ResourceDictionary.MergedDictionaries>
|
||||
</ResourceDictionary>
|
||||
<s:ApplicationLoader>
|
||||
<s:ApplicationLoader.Bootstrapper>
|
||||
<local:Bootstrapper/>
|
||||
</s:ApplicationLoader.Bootstrapper>
|
||||
</s:ApplicationLoader>
|
||||
</Application.Resources>
|
||||
</Application>
|
||||
|
|
|
@ -12,8 +12,9 @@ namespace StyletIntegrationTests
|
|||
{
|
||||
public class Bootstrapper : Bootstrapper<ShellViewModel>
|
||||
{
|
||||
protected override void OnStart()
|
||||
protected override void Configure()
|
||||
{
|
||||
base.Configure();
|
||||
LogManager.Enabled = true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue