Fixed FakeLibraryInformation

This commit is contained in:
David Fowler 2014-10-15 00:35:01 -07:00
parent a0f3560095
commit 28bdedab22
1 changed files with 9 additions and 0 deletions

View File

@ -5,6 +5,7 @@ using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Microsoft.AspNet.Builder;
@ -160,6 +161,14 @@ namespace Microsoft.AspNet.Diagnostics.Tests
throw new NotImplementedException("Should not be needed by this middleware");
}
}
public IEnumerable<AssemblyName> LoadableAssemblies
{
get
{
throw new NotImplementedException("Should not be needed by this middleware");
}
}
}
}
}