Files
PowerToys/src/modules/launcher/Plugins/Wox.Plugin.Shell/Wox.Plugin.Shell.csproj

106 lines
3.7 KiB
XML
Raw Normal View History

2020-03-20 09:43:42 -07:00
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
2015-01-14 22:19:44 +08:00
<PropertyGroup>
2020-03-20 09:43:42 -07:00
<TargetFramework>netcoreapp3.1</TargetFramework>
2015-01-14 22:19:44 +08:00
<ProjectGuid>{C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}</ProjectGuid>
<AppDesignerFolder>Properties</AppDesignerFolder>
2016-05-19 23:44:08 +01:00
<RootNamespace>Wox.Plugin.Shell</RootNamespace>
<AssemblyName>Wox.Plugin.Shell</AssemblyName>
2020-03-20 09:43:42 -07:00
<UseWindowsForms>true</UseWindowsForms>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
2015-01-14 22:19:44 +08:00
</PropertyGroup>
2020-03-20 09:43:42 -07:00
2015-01-14 22:19:44 +08: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\Plugins\Wox.Plugin.Shell\</OutputPath>
2015-01-14 22:19:44 +08:00
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2015-01-15 20:47:48 +08:00
<Prefer32Bit>false</Prefer32Bit>
2015-01-14 22:19:44 +08:00
</PropertyGroup>
2020-03-20 09:43:42 -07:00
2015-01-14 22:19:44 +08:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
2020-03-20 09:43:42 -07:00
<OutputPath>..\..\Output\Release\Plugins\Wox.Plugin.Shell\</OutputPath>
2015-01-14 22:19:44 +08:00
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2015-01-15 20:47:48 +08:00
<Prefer32Bit>false</Prefer32Bit>
2015-01-14 22:19:44 +08:00
</PropertyGroup>
2020-03-20 09:43:42 -07:00
2015-01-14 22:19:44 +08:00
<ItemGroup>
<None Include="Images\user.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
2015-01-14 22:19:44 +08:00
<Content Include="Languages\en.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Languages\zh-cn.xaml">
2015-01-14 22:19:44 +08:00
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Languages\zh-tw.xaml">
2015-01-14 22:19:44 +08:00
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Languages\de.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2015-01-14 22:19:44 +08:00
</ItemGroup>
2020-03-20 09:43:42 -07:00
2015-01-14 22:19:44 +08:00
<ItemGroup>
2020-03-20 09:43:42 -07:00
<ProjectReference Include="..\..\Wox.Infrastructure\Wox.Infrastructure.csproj" />
<ProjectReference Include="..\..\Wox.Plugin\Wox.Plugin.csproj" />
2015-01-14 22:19:44 +08:00
</ItemGroup>
2020-03-20 09:43:42 -07:00
2015-01-14 22:19:44 +08:00
<ItemGroup>
<None Include="plugin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
2020-03-20 09:43:42 -07:00
2015-01-14 22:19:44 +08:00
<ItemGroup>
2016-05-19 23:44:08 +01:00
<None Include="Images\shell.png">
2015-01-14 22:19:44 +08:00
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
2020-03-20 09:43:42 -07:00
2016-05-19 23:44:08 +01:00
<ItemGroup>
<Content Include="Languages\pl.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Languages\tr.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2016-05-19 23:44:08 +01:00
<Page Include="ShellSetting.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
</ItemGroup>
2020-03-20 09:43:42 -07:00
<ItemGroup>
<PackageReference Include="InputSimulator" Version="1.0.4" />
<PackageReference Include="JetBrains.Annotations" Version="2019.1.3" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="System.Runtime" Version="4.3.1" />
</ItemGroup>
2020-01-14 21:10:54 +02:00
<ItemGroup>
2020-03-20 09:43:42 -07:00
<Folder Include="Properties\" />
2020-01-14 21:10:54 +02:00
</ItemGroup>
2020-03-20 09:43:42 -07:00
2015-11-07 03:03:54 +00:00
</Project>