Files
PowerToys/src/modules/launcher/Wox.Infrastructure/Wox.Infrastructure.csproj

67 lines
2.6 KiB
XML
Raw Normal View History

2020-03-20 09:43:42 -07:00
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
2020-03-20 09:43:42 -07:00
<TargetFramework>netcoreapp3.1</TargetFramework>
<ProjectGuid>{4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}</ProjectGuid>
<OutputType>Library</OutputType>
2020-03-20 09:43:42 -07:00
<UseWpf>true</UseWpf>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Wox.Infrastructure</RootNamespace>
<AssemblyName>Wox.Infrastructure</AssemblyName>
2020-03-20 09:43:42 -07:00
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
</PropertyGroup>
2020-03-20 09:43:42 -07:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
2020-03-20 09:43:42 -07:00
<OutputPath>..\Output\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2014-10-22 18:36:49 +08:00
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
2015-01-15 20:47:48 +08:00
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
2020-03-20 09:43:42 -07:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
2020-03-20 09:43:42 -07:00
<OutputPath>..\Output\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2014-10-27 14:53:44 +08:00
<AllowUnsafeBlocks>false</AllowUnsafeBlocks>
2015-01-15 20:47:48 +08:00
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
2020-03-20 09:43:42 -07:00
<ItemGroup>
<ProjectReference Include="..\Wox.Plugin\Wox.Plugin.csproj">
<Project>{8451ecdd-2ea4-4966-bb0a-7bbc40138e80}</Project>
<Name>Wox.Plugin</Name>
</ProjectReference>
</ItemGroup>
2020-03-20 09:43:42 -07:00
2015-11-07 03:03:54 +00:00
<ItemGroup>
2020-03-20 09:43:42 -07:00
<PackageReference Include="JetBrains.Annotations" Version="2019.1.3" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="NLog.Schema" Version="4.7.0-rc1" />
<PackageReference Include="NLog.Web.AspNetCore" Version="4.9.0" />
<PackageReference Include="Pinyin4DotNet" Version="2016.4.23.4" />
<PackageReference Include="System.Drawing.Common" Version="4.7.0" />
<PackageReference Include="System.Runtime" Version="4.3.1" />
2015-01-15 20:47:48 +08:00
</ItemGroup>
2020-03-20 09:43:42 -07:00
<ItemGroup>
<None Update="pinyindb\pinyin_gwoyeu_mapping.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="pinyindb\pinyin_mapping.xml">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="pinyindb\unicode_to_hanyu_pinyin.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
2015-10-31 21:19:32 +00:00
</Project>