2019-10-02 05:28:25 +08:00
<?xml version="1.0" encoding="utf-8"?>
2019-08-06 18:36:28 +08:00
<Project ToolsVersion= "12.0" DefaultTargets= "Build" xmlns= "http://schemas.microsoft.com/developer/msbuild/2003" >
<Import Project= "$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition= "Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup >
<Configuration Condition= " '$(Configuration)' == '' " > Debug</Configuration>
<Platform Condition= " '$(Platform)' == '' " > AnyCPU</Platform>
<ProjectGuid > {9B130CC5-14FB-41FF-B310-0A95B6894C37}</ProjectGuid>
<OutputType > Library</OutputType>
<AppDesignerFolder > Properties</AppDesignerFolder>
<RootNamespace > Wox.Plugin.BrowserBookmark</RootNamespace>
<AssemblyName > Wox.Plugin.BrowserBookmark</AssemblyName>
<TargetFrameworkVersion > v4.5.2</TargetFrameworkVersion>
<FileAlignment > 512</FileAlignment>
<SolutionDir Condition= "$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'" > ..\..\</SolutionDir>
<RestorePackages > true</RestorePackages>
<TargetFrameworkProfile />
2019-10-02 05:28:25 +08:00
<NuGetPackageImportStamp >
</NuGetPackageImportStamp>
2019-08-06 18:36:28 +08:00
</PropertyGroup>
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' " >
<DebugSymbols > true</DebugSymbols>
<DebugType > full</DebugType>
<Optimize > false</Optimize>
<OutputPath > ..\..\Output\Debug\Plugins\Wox.Plugin.BrowserBookmark\</OutputPath>
<DefineConstants > DEBUG;TRACE</DefineConstants>
<ErrorReport > prompt</ErrorReport>
<WarningLevel > 4</WarningLevel>
<Prefer32Bit > false</Prefer32Bit>
</PropertyGroup>
<PropertyGroup Condition= " '$(Configuration)|$(Platform)' == 'Release|AnyCPU' " >
<DebugType > pdbonly</DebugType>
<Optimize > true</Optimize>
<OutputPath > ..\..\Output\Release\Plugins\Wox.Plugin.BrowserBookmark\</OutputPath>
<DefineConstants > TRACE</DefineConstants>
<ErrorReport > prompt</ErrorReport>
<WarningLevel > 4</WarningLevel>
<Prefer32Bit > false</Prefer32Bit>
</PropertyGroup>
<ItemGroup >
2019-10-02 05:28:25 +08:00
<Reference Include= "EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" >
<HintPath > ..\..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.dll</HintPath>
</Reference>
<Reference Include= "EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL" >
<HintPath > ..\..\packages\EntityFramework.6.2.0\lib\net45\EntityFramework.SqlServer.dll</HintPath>
</Reference>
2019-08-06 18:36:28 +08:00
<Reference Include= "PresentationCore" />
2019-11-11 05:00:31 +08:00
<Reference Include= "PresentationFramework" />
2019-08-06 18:36:28 +08:00
<Reference Include= "System" />
2019-10-02 05:28:25 +08:00
<Reference Include= "System.ComponentModel.DataAnnotations" />
2019-08-06 18:36:28 +08:00
<Reference Include= "System.Core" />
<Reference Include= "System.Data" />
2019-10-02 05:28:25 +08:00
<Reference Include= "System.Data.SQLite, Version=1.0.111.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL" >
<HintPath > ..\..\packages\System.Data.SQLite.Core.1.0.111.0\lib\net451\System.Data.SQLite.dll</HintPath>
</Reference>
<Reference Include= "System.Data.SQLite.EF6, Version=1.0.111.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL" >
<HintPath > ..\..\packages\System.Data.SQLite.EF6.1.0.111.0\lib\net451\System.Data.SQLite.EF6.dll</HintPath>
</Reference>
<Reference Include= "System.Data.SQLite.Linq, Version=1.0.111.0, Culture=neutral, PublicKeyToken=db937bc2d44ff139, processorArchitecture=MSIL" >
<HintPath > ..\..\packages\System.Data.SQLite.Linq.1.0.111.0\lib\net451\System.Data.SQLite.Linq.dll</HintPath>
</Reference>
2019-11-11 05:00:31 +08:00
<Reference Include= "System.Xaml" />
2019-08-06 18:36:28 +08:00
<Reference Include= "UnidecodeSharp, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL" >
<HintPath > ..\..\packages\UnidecodeSharp.1.0.0.0\lib\net35\UnidecodeSharp.dll</HintPath>
<Private > True</Private>
</Reference>
<Reference Include= "WindowsBase" />
</ItemGroup>
<ItemGroup >
<Compile Include= "Bookmark.cs" />
<Compile Include= "ChromeBookmarks.cs" />
2019-10-06 09:52:18 +08:00
<Compile Include= "Commands\Bookmarks.cs" />
2019-08-06 18:36:28 +08:00
<Compile Include= "FirefoxBookmarks.cs" />
<Compile Include= "Main.cs" />
2019-11-11 05:00:31 +08:00
<Compile Include= "Models\Settings.cs" />
2019-08-06 18:36:28 +08:00
<Compile Include= "Properties\AssemblyInfo.cs" />
2019-11-11 05:00:31 +08:00
<Compile Include= "Views\SettingsControl.xaml.cs" >
<DependentUpon > SettingsControl.xaml</DependentUpon>
</Compile>
2019-08-06 18:36:28 +08:00
</ItemGroup>
<ItemGroup >
<None Include= "app.config" />
<None Include= "packages.config" />
<None Include= "plugin.json" >
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup >
<Content Include= "Images\bookmark.png" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
2019-10-07 23:08:06 +08:00
<Content Include= "Languages\en.xaml" >
<SubType > Designer</SubType>
<Generator > MSBuild:Compile</Generator>
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
2019-08-06 18:36:28 +08:00
<Content Include= "x64\SQLite.Interop.dll" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
<Content Include= "x86\SQLite.Interop.dll" >
<CopyToOutputDirectory > Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
<ItemGroup >
<ProjectReference Include= "..\..\Wox.Infrastructure\Wox.Infrastructure.csproj" >
<Project > {4fd29318-a8ab-4d8f-aa47-60bc241b8da3}</Project>
<Name > Wox.Infrastructure</Name>
</ProjectReference>
<ProjectReference Include= "..\..\Wox.Plugin\Wox.Plugin.csproj" >
<Project > {8451ecdd-2ea4-4966-bb0a-7bbc40138e80}</Project>
<Name > Wox.Plugin</Name>
</ProjectReference>
</ItemGroup>
2019-10-07 23:08:06 +08:00
<ItemGroup >
<Content Include= "Languages\tr.xaml" >
<Generator > MSBuild:Compile</Generator>
<SubType > Designer</SubType>
<CopyToOutputDirectory > PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
2019-11-11 05:00:31 +08:00
<ItemGroup >
<Page Include= "Views\SettingsControl.xaml" >
<Generator > MSBuild:Compile</Generator>
<SubType > Designer</SubType>
</Page>
</ItemGroup>
<ItemGroup />
2019-08-06 18:36:28 +08:00
<Import Project= "$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project= "$(SolutionDir)\.nuget\NuGet.targets" Condition= "Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
2019-10-02 05:28:25 +08:00
<Import Project= "..\..\packages\System.Data.SQLite.Core.1.0.111.0\build\net451\System.Data.SQLite.Core.targets" Condition= "Exists('..\..\packages\System.Data.SQLite.Core.1.0.111.0\build\net451\System.Data.SQLite.Core.targets')" />
<Target Name= "EnsureNuGetPackageBuildImports" BeforeTargets= "PrepareForBuild" >
<PropertyGroup >
<ErrorText > This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition= "!Exists('..\..\packages\System.Data.SQLite.Core.1.0.111.0\build\net451\System.Data.SQLite.Core.targets')" Text= "$([System.String]::Format('$(ErrorText)', '..\..\packages\System.Data.SQLite.Core.1.0.111.0\build\net451\System.Data.SQLite.Core.targets'))" />
</Target>
2019-08-06 18:36:28 +08:00
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name= "BeforeBuild" >
</Target>
<Target Name= "AfterBuild" >
</Target>
-->
</Project>