PowerToys/Wox.Core/Wox.Core.csproj

113 lines
5.4 KiB
XML
Raw Normal View History

2014-12-26 19:36:43 +08:00
<?xml version="1.0" encoding="utf-8"?>
<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>{B749F0DB-8E75-47DB-9E5E-265D16D0C0D2}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Wox.Core</RootNamespace>
<AssemblyName>Wox.Core</AssemblyName>
2015-01-15 21:01:43 +08:00
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
2014-12-26 19:36:43 +08:00
<FileAlignment>512</FileAlignment>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
2015-01-14 22:19:44 +08:00
<TargetFrameworkProfile />
2014-12-26 19:36:43 +08:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
2014-12-26 22:51:04 +08:00
<OutputPath>..\Output\Debug\</OutputPath>
2014-12-26 19:36:43 +08:00
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2015-01-15 20:47:48 +08:00
<Prefer32Bit>false</Prefer32Bit>
2014-12-26 19:36:43 +08:00
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
2015-11-11 08:42:34 +08:00
<OutputPath>..\Output\Release\</OutputPath>
2014-12-26 19:36:43 +08:00
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2015-01-15 20:47:48 +08:00
<Prefer32Bit>false</Prefer32Bit>
2014-12-26 19:36:43 +08:00
</PropertyGroup>
<ItemGroup>
2014-12-27 12:34:51 +08:00
<Reference Include="ICSharpCode.SharpZipLib, Version=0.86.0.518, Culture=neutral, PublicKeyToken=1b03e6acf1164f73, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\SharpZipLib.0.86.0\lib\20\ICSharpCode.SharpZipLib.dll</HintPath>
</Reference>
2015-11-01 02:49:37 +08:00
<Reference Include="NAppUpdate.Framework, Version=0.3.2.0, Culture=neutral, PublicKeyToken=d1f1d1f19f9e5a56, processorArchitecture=MSIL">
<HintPath>..\packages\NAppUpdate.Framework.0.3.2.0\lib\net20\NAppUpdate.Framework.dll</HintPath>
<Private>True</Private>
</Reference>
2015-01-15 21:01:43 +08:00
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\Newtonsoft.Json.6.0.8\lib\net35\Newtonsoft.Json.dll</HintPath>
2014-12-26 19:36:43 +08:00
</Reference>
2015-01-02 23:07:49 +08:00
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
2014-12-26 19:36:43 +08:00
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
2014-12-26 22:51:04 +08:00
<Reference Include="System.Windows.Forms" />
2014-12-26 19:36:43 +08:00
<Reference Include="System.Xml" />
2015-01-02 23:07:49 +08:00
<Reference Include="WindowsBase" />
2014-12-26 19:36:43 +08:00
</ItemGroup>
<ItemGroup>
2015-01-11 21:52:30 +08:00
<Compile Include="APIServer.cs" />
2015-01-27 21:51:29 +08:00
<Compile Include="Updater\Release.cs" />
<Compile Include="Updater\UpdaterManager.cs" />
2015-02-01 22:46:56 +08:00
<Compile Include="Updater\WoxUpdateSource.cs" />
<Compile Include="UserSettings\HttpProxy.cs" />
<Compile Include="i18n\AvailableLanguages.cs" />
<Compile Include="i18n\IInternationalization.cs" />
<Compile Include="i18n\Internationalization.cs" />
2015-01-02 23:07:49 +08:00
<Compile Include="i18n\InternationalizationManager.cs" />
<Compile Include="i18n\Language.cs" />
<Compile Include="Theme\ITheme.cs" />
<Compile Include="Theme\ThemeManager.cs" />
2015-01-02 23:07:49 +08:00
<Compile Include="UI\IUIResource.cs" />
<Compile Include="UI\ResourceMerger.cs" />
2014-12-27 12:34:51 +08:00
<Compile Include="Plugin\PluginInstaller.cs" />
2014-12-26 19:36:43 +08:00
<Compile Include="Plugin\JsonRPCPlugin.cs" />
<Compile Include="Plugin\JsonRPCPluginLoader.cs" />
<Compile Include="Plugin\CSharpPluginLoader.cs" />
<Compile Include="Plugin\IPluginLoader.cs" />
<Compile Include="Plugin\JsonPRCModel.cs" />
<Compile Include="Plugin\PluginConfig.cs" />
<Compile Include="Plugin\PluginManager.cs" />
<Compile Include="Plugin\PythonPlugin.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
2015-01-02 23:07:49 +08:00
<Compile Include="Theme\FontHelper.cs" />
<Compile Include="Theme\Theme.cs" />
<Compile Include="UserSettings\CustomizedPluginConfig.cs" />
<Compile Include="UserSettings\PluginHotkey.cs" />
<Compile Include="UserSettings\UserSettingStorage.cs" />
2015-01-27 21:51:29 +08:00
<Compile Include="Updater\SemanticVersion.cs" />
2014-12-26 19:36:43 +08:00
</ItemGroup>
<ItemGroup>
2015-01-15 20:47:48 +08:00
<None Include="packages.config" />
<None Include="Plugin\README.md" />
2014-12-29 21:55:27 +08:00
<None Include="README.md" />
2014-12-26 19:36:43 +08:00
</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>
<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>