PowerToys/Wox.Plugin/Wox.Plugin.csproj

103 lines
5.0 KiB
XML
Raw Normal View History

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 />
<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>
<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>
2016-04-23 06:11:22 +08:00
<Reference Include="JetBrains.Annotations, Version=10.1.4.0, Culture=neutral, PublicKeyToken=1010a0d8d6380325, processorArchitecture=MSIL">
<HintPath>..\packages\JetBrains.Annotations.10.1.4\lib\net20\JetBrains.Annotations.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.8.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="PropertyChanged, Version=1.51.0.0, Culture=neutral, PublicKeyToken=ee3ee20bcf148ddd, processorArchitecture=MSIL">
<HintPath>..\packages\PropertyChanged.Fody.1.51.0\lib\dotnet\PropertyChanged.dll</HintPath>
<Private>False</Private>
</Reference>
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" />
<Reference Include="WindowsBase" />
2013-12-19 23:51:20 +08:00
</ItemGroup>
<ItemGroup>
<Compile Include="..\SolutionAssemblyInfo.cs">
<Link>Properties\SolutionAssemblyInfo.cs</Link>
</Compile>
2013-12-20 19:38:10 +08:00
<Compile Include="AllowedLanguage.cs" />
<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" />
<Compile Include="Features\IContextMenu.cs" />
2015-02-05 22:20:42 +08:00
<Compile Include="Features\IExclusiveQuery.cs" />
<Compile Include="Features\IInstantQuery.cs" />
2014-07-18 20:00:55 +08:00
<Compile Include="IHttpProxy.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" />
<Compile Include="ISettingProvider.cs" />
<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" />
<Compile Include="ActionContext.cs" />
2013-12-19 23:51:20 +08:00
</ItemGroup>
2014-12-29 21:55:27 +08:00
<ItemGroup>
<None Include="packages.config" />
2014-12-29 21:55:27 +08:00
<None Include="README.md" />
</ItemGroup>
<ItemGroup>
<Content Include="FodyWeavers.xml" />
</ItemGroup>
2013-12-19 23:51:20 +08:00
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="..\packages\Fody.1.29.2\build\dotnet\Fody.targets" Condition="Exists('..\packages\Fody.1.29.2\build\dotnet\Fody.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\Fody.1.29.2\build\dotnet\Fody.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\Fody.1.29.2\build\dotnet\Fody.targets'))" />
</Target>
2013-12-19 23:51:20 +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>