PowerToys/Wox.Plugin/Wox.Plugin.csproj

68 lines
3.0 KiB
XML
Raw Normal View History

2013-12-19 23:51:20 +08:00
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.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>{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>
2013-12-19 23:51:20 +08:00
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</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>
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>
</PropertyGroup>
<ItemGroup>
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
2013-12-19 23:51:20 +08:00
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Windows.Forms" />
2013-12-19 23:51:20 +08:00
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
<Reference Include="WindowsBase" />
<Reference Include="WindowsFormsIntegration" />
2013-12-19 23:51:20 +08:00
</ItemGroup>
<ItemGroup>
2013-12-20 19:38:10 +08:00
<Compile Include="AllowedLanguage.cs" />
2013-12-19 23:51:20 +08:00
<Compile Include="IPlugin.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" />
2014-01-03 18:16:05 +08:00
<Compile Include="PluginType.cs" />
2013-12-19 23:51:20 +08:00
<Compile Include="Properties\AssemblyInfo.cs" />
2013-12-26 20:18:08 +08:00
<Compile Include="PythonResult.cs" />
2013-12-19 23:51:20 +08:00
<Compile Include="Query.cs" />
<Compile Include="Result.cs" />
<Compile Include="ActionContext.cs" />
2013-12-19 23:51:20 +08:00
</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>