mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-05 18:57:19 +02:00
# Conflicts: # src/modules/launcher/Plugins/Wox.Plugin.BrowserBookmark/Wox.Plugin.BrowserBookmark.csproj # src/modules/launcher/Plugins/Wox.Plugin.Calculator/Wox.Plugin.Calculator.csproj # src/modules/launcher/Plugins/Wox.Plugin.Color/Wox.Plugin.Color.csproj # src/modules/launcher/Plugins/Wox.Plugin.ControlPanel/Wox.Plugin.ControlPanel.csproj # src/modules/launcher/Plugins/Wox.Plugin.Everything/Wox.Plugin.Everything.csproj # src/modules/launcher/Plugins/Wox.Plugin.Folder/Wox.Plugin.Folder.csproj # src/modules/launcher/Plugins/Wox.Plugin.Indexer/Properties/AssemblyInfo.cs # src/modules/launcher/Plugins/Wox.Plugin.Indexer/Wox.Plugin.Indexer.csproj # src/modules/launcher/Plugins/Wox.Plugin.PluginIndicator/Wox.Plugin.PluginIndicator.csproj # src/modules/launcher/Plugins/Wox.Plugin.PluginManagement/Wox.Plugin.PluginManagement.csproj # src/modules/launcher/Plugins/Wox.Plugin.Program/Wox.Plugin.Program.csproj # src/modules/launcher/Plugins/Wox.Plugin.Shell/Wox.Plugin.Shell.csproj # src/modules/launcher/Plugins/Wox.Plugin.Sys/Wox.Plugin.Sys.csproj # src/modules/launcher/Plugins/Wox.Plugin.Url/Wox.Plugin.Url.csproj # src/modules/launcher/Plugins/Wox.Plugin.WebSearch/Wox.Plugin.WebSearch.csproj # src/modules/launcher/Wox.Core/Wox.Core.csproj # src/modules/launcher/Wox.Infrastructure/Wox.Infrastructure.csproj # src/modules/launcher/Wox.Plugin/Wox.Plugin.csproj # src/modules/launcher/Wox.Test/Wox.Test.csproj # src/modules/launcher/Wox/Wox.csproj
70 lines
2.8 KiB
XML
70 lines
2.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
|
<ProjectGuid>{4FD29318-A8AB-4D8F-AA47-60BC241B8DA3}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<UseWpf>true</UseWpf>
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
|
<RootNamespace>Wox.Infrastructure</RootNamespace>
|
|
<AssemblyName>Wox.Infrastructure</AssemblyName>
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|x64'">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<OutputPath>..\..\..\..\x64\Debug\modules\launcher\</OutputPath>
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<DebugType>full</DebugType>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<LangVersion>7.3</LangVersion>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
<WarningLevel>4</WarningLevel>
|
|
<Optimize>false</Optimize>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Release|x64'">
|
|
<OutputPath>..\..\..\..\x64\Release\modules\launcher\</OutputPath>
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
<Optimize>true</Optimize>
|
|
<DebugType>pdbonly</DebugType>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<LangVersion>7.3</LangVersion>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
|
|
<WarningLevel>4</WarningLevel>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Wox.Plugin\Wox.Plugin.csproj">
|
|
<Project>{8451ecdd-2ea4-4966-bb0a-7bbc40138e80}</Project>
|
|
<Name>Wox.Plugin</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<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" />
|
|
</ItemGroup>
|
|
|
|
<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>
|
|
|
|
</Project> |