Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #102 from github/shana/fix-designtimehelper
Browse files Browse the repository at this point in the history
Fix design time helper
  • Loading branch information
haacked committed Sep 22, 2015
2 parents df25d49 + ad42ba3 commit 6397fbd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/DesignTimeStyleHelper/App.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
using Microsoft.VisualStudio.ComponentModelHost;
using Microsoft.VisualStudio.Shell;
using Moq;
using GitHub.Models;

namespace DesignTimeStyleHelper
{
Expand Down Expand Up @@ -42,7 +43,7 @@ public class Holder
public IVisualStudioBrowser Browser;

[Import]
public ExportFactoryProvider ExportFactoryProvider;
public IExportFactoryProvider ExportFactoryProvider;

[Import]
public IUIProvider UIProvider;
Expand All @@ -68,7 +69,7 @@ public CustomServiceProvider()
{
catalog = new AggregateCatalog(
new AssemblyCatalog(typeof(CustomServiceProvider).Assembly),
new AssemblyCatalog(typeof(Services).Assembly), // GitHub.VisualStudio
new AssemblyCatalog(typeof(Program).Assembly), // GitHub.VisualStudio
new AssemblyCatalog(typeof(GitHub.Api.ApiClient).Assembly), // GitHub.App
new AssemblyCatalog(typeof(GitHub.Api.SimpleApiClient).Assembly), // GitHub.Api
new AssemblyCatalog(typeof(Rothko.Environment).Assembly), // Rothko
Expand Down
4 changes: 4 additions & 0 deletions src/DesignTimeStyleHelper/DesignTimeStyleHelper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@
<Reference Include="WindowsBase" />
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="Microsoft.TeamFoundation.Git.Provider, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\..\lib\Microsoft.TeamFoundation.Git.Provider.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<ApplicationDefinition Include="App.xaml">
Expand Down

0 comments on commit 6397fbd

Please sign in to comment.