2013-12-19 23:51:20 +08:00
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-11-07 11:03:54 +08:00
|
|
|
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2013-12-19 23:51:20 +08:00
|
|
|
|
<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>{8451ECDD-2EA4-4966-BB0A-7BBC40138E80}</ProjectGuid>
|
|
|
|
|
<OutputType>Library</OutputType>
|
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
2014-01-29 18:33:24 +08:00
|
|
|
|
<RootNamespace>Wox.Plugin</RootNamespace>
|
|
|
|
|
<AssemblyName>Wox.Plugin</AssemblyName>
|
2015-11-07 11:03:54 +08:00
|
|
|
|
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
|
2013-12-19 23:51:20 +08:00
|
|
|
|
<FileAlignment>512</FileAlignment>
|
2015-11-07 11:03:54 +08:00
|
|
|
|
<TargetFrameworkProfile />
|
2016-05-22 12:30:38 +08:00
|
|
|
|
<NuGetPackageImportStamp>
|
|
|
|
|
</NuGetPackageImportStamp>
|
2013-12-19 23:51:20 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
|
<Optimize>false</Optimize>
|
2014-03-17 21:49:54 +08:00
|
|
|
|
<OutputPath>..\Output\Debug\</OutputPath>
|
2013-12-19 23:51:20 +08:00
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2013-12-21 01:20:17 +08:00
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
2015-11-07 11:03:54 +08:00
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
2013-12-19 23:51:20 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
<Optimize>true</Optimize>
|
2014-03-17 21:49:54 +08:00
|
|
|
|
<OutputPath>..\Output\Release\</OutputPath>
|
2013-12-19 23:51:20 +08:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
<ErrorReport>prompt</ErrorReport>
|
|
|
|
|
<WarningLevel>4</WarningLevel>
|
2015-11-07 11:03:54 +08:00
|
|
|
|
<Prefer32Bit>false</Prefer32Bit>
|
2013-12-19 23:51:20 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
2014-03-29 15:52:57 +08:00
|
|
|
|
<Reference Include="PresentationCore" />
|
|
|
|
|
<Reference Include="PresentationFramework" />
|
2013-12-19 23:51:20 +08:00
|
|
|
|
<Reference Include="System" />
|
|
|
|
|
<Reference Include="System.Core" />
|
2015-11-07 11:03:54 +08:00
|
|
|
|
<Reference Include="System.Xaml" />
|
2014-03-29 15:52:57 +08:00
|
|
|
|
<Reference Include="WindowsBase" />
|
2013-12-19 23:51:20 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2015-11-28 18:47:42 +08:00
|
|
|
|
<Compile Include="..\SolutionAssemblyInfo.cs">
|
|
|
|
|
<Link>Properties\SolutionAssemblyInfo.cs</Link>
|
|
|
|
|
</Compile>
|
2013-12-20 19:38:10 +08:00
|
|
|
|
<Compile Include="AllowedLanguage.cs" />
|
2016-05-24 05:08:13 +08:00
|
|
|
|
<Compile Include="BaseModel.cs" />
|
2014-07-19 10:12:11 +08:00
|
|
|
|
<Compile Include="EventHandler.cs" />
|
2015-11-03 03:27:46 +08:00
|
|
|
|
<Compile Include="Feature.cs" />
|
2015-02-07 23:49:46 +08:00
|
|
|
|
<Compile Include="Features\IContextMenu.cs" />
|
2015-02-05 22:20:42 +08:00
|
|
|
|
<Compile Include="Features\IExclusiveQuery.cs" />
|
|
|
|
|
<Compile Include="Features\IInstantQuery.cs" />
|
2019-10-06 09:50:25 +08:00
|
|
|
|
<Compile Include="Interfaces\IReloadable.cs" />
|
2013-12-19 23:51:20 +08:00
|
|
|
|
<Compile Include="IPlugin.cs" />
|
2014-07-05 23:10:34 +08:00
|
|
|
|
<Compile Include="IPublicAPI.cs" />
|
2014-03-29 15:52:57 +08:00
|
|
|
|
<Compile Include="ISettingProvider.cs" />
|
2014-02-09 20:55:18 +08:00
|
|
|
|
<Compile Include="PluginPair.cs" />
|
2014-01-03 23:52:36 +08:00
|
|
|
|
<Compile Include="PluginInitContext.cs" />
|
2013-12-20 19:38:10 +08:00
|
|
|
|
<Compile Include="PluginMetadata.cs" />
|
2013-12-19 23:51:20 +08:00
|
|
|
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
|
|
|
|
<Compile Include="Query.cs" />
|
|
|
|
|
<Compile Include="Result.cs" />
|
2014-02-09 20:55:18 +08:00
|
|
|
|
<Compile Include="ActionContext.cs" />
|
2020-02-25 18:08:51 +08:00
|
|
|
|
<Compile Include="SharedCommands\FilesFolders.cs" />
|
2019-08-06 19:27:54 +08:00
|
|
|
|
<Compile Include="SharedCommands\SearchWeb.cs" />
|
2019-12-06 04:49:20 +08:00
|
|
|
|
<Compile Include="SharedCommands\ShellCommand.cs" />
|
2013-12-19 23:51:20 +08:00
|
|
|
|
</ItemGroup>
|
2014-12-29 21:55:27 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="README.md" />
|
|
|
|
|
</ItemGroup>
|
2016-05-22 12:30:38 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="FodyWeavers.xml" />
|
|
|
|
|
</ItemGroup>
|
2020-01-15 03:10:54 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Fody">
|
|
|
|
|
<Version>1.29.2</Version>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="JetBrains.Annotations">
|
|
|
|
|
<Version>10.3.0</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Mono.Cecil">
|
|
|
|
|
<Version>0.9.6.1</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Newtonsoft.Json">
|
|
|
|
|
<Version>9.0.1</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="PropertyChanged.Fody">
|
|
|
|
|
<Version>1.51.0</Version>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="System.Runtime">
|
|
|
|
|
<Version>4.0.0</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
2013-12-19 23:51:20 +08:00
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
<!-- 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>
|