delete useless reference

This commit is contained in:
Paddy Xu
2017-05-15 00:38:10 +03:00
parent b210b03383
commit 375b3b9a59
2 changed files with 1 additions and 4 deletions

View File

@@ -37,7 +37,7 @@ namespace QuickLook.Plugin.MarkdownViewer
{
_panel = new WebkitPanel();
context.ViewerContent = _panel;
context.Title = Path.IsPathRooted(path) ? Path.GetFileName(path) : path;
context.Title = Path.GetFileName(path);
_panel.LoadHtml(GenerateMarkdownHtml(path), path);

View File

@@ -31,9 +31,6 @@
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="CefSharp">
<HintPath>..\QuickLook.Plugin.HtmlViewer\References\CefSharp.dll</HintPath>
</Reference>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="System" />