Flow.Launcher/Plugins/Flow.Launcher.Plugin.Shell/Flow.Launcher.Plugin.Shell.csproj

67 lines
2.5 KiB
XML
Raw Normal View History

2021-02-11 19:17:13 +00:00
<Project Sdk="Microsoft.NET.Sdk">
2021-01-26 08:18:29 +00:00
2015-01-14 14:19:44 +00:00
<PropertyGroup>
<OutputType>Library</OutputType>
2021-11-09 13:13:29 +00:00
<TargetFramework>net6.0-windows</TargetFramework>
2015-01-14 14:19:44 +00:00
<ProjectGuid>{C21BFF9C-2C99-4B5F-B7C9-A5E6DDDB37B0}</ProjectGuid>
<AppDesignerFolder>Properties</AppDesignerFolder>
2020-04-21 09:12:17 +00:00
<RootNamespace>Flow.Launcher.Plugin.Shell</RootNamespace>
<AssemblyName>Flow.Launcher.Plugin.Shell</AssemblyName>
<UseWindowsForms>true</UseWindowsForms>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
2015-01-14 14:19:44 +00:00
</PropertyGroup>
2015-01-14 14:19:44 +00:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>portable</DebugType>
2015-01-14 14:19:44 +00:00
<Optimize>false</Optimize>
2020-04-21 09:12:17 +00:00
<OutputPath>..\..\Output\Debug\Plugins\Flow.Launcher.Plugin.Shell\</OutputPath>
2015-01-14 14:19:44 +00:00
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2015-01-15 12:47:48 +00:00
<Prefer32Bit>false</Prefer32Bit>
2015-01-14 14:19:44 +00:00
</PropertyGroup>
2015-01-14 14:19:44 +00:00
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
2020-04-21 09:12:17 +00:00
<OutputPath>..\..\Output\Release\Plugins\Flow.Launcher.Plugin.Shell\</OutputPath>
2015-01-14 14:19:44 +00:00
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
2015-01-15 12:47:48 +00:00
<Prefer32Bit>false</Prefer32Bit>
2015-01-14 14:19:44 +00:00
</PropertyGroup>
2015-01-14 14:19:44 +00:00
<ItemGroup>
2020-04-21 09:12:17 +00:00
<ProjectReference Include="..\..\Flow.Launcher.Infrastructure\Flow.Launcher.Infrastructure.csproj" />
<ProjectReference Include="..\..\Flow.Launcher.Plugin\Flow.Launcher.Plugin.csproj" />
2015-01-14 14:19:44 +00:00
</ItemGroup>
2015-01-14 14:19:44 +00:00
<ItemGroup>
<None Include="plugin.json">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
2015-01-14 14:19:44 +00:00
<ItemGroup>
<Content Include="Languages\*.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="Images\*.png">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
2021-01-28 10:41:20 +00:00
<Page Include="ShellSetting.xaml">
<Generator>MSBuild:Compile</Generator>
<SubType>Designer</SubType>
</Page>
2016-05-19 22:44:08 +00:00
</ItemGroup>
<ItemGroup>
<PackageReference Include="InputSimulator" Version="1.0.4" />
</ItemGroup>
2015-11-07 03:03:54 +00:00
</Project>