2021-01-06 11:40:07 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<Import Project="..\..\..\..\Version.props" />
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-12-01 09:40:41 -05:00
|
|
|
<TargetFramework>net7.0-windows</TargetFramework>
|
2021-01-06 11:40:07 +01:00
|
|
|
<RootNamespace>Microsoft.PowerToys.Run.Plugin.Service</RootNamespace>
|
|
|
|
<AssemblyName>Microsoft.PowerToys.Run.Plugin.Service</AssemblyName>
|
|
|
|
<Version>$(Version).0</Version>
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
2022-05-19 14:02:08 +01:00
|
|
|
<GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssembliesForCore>
|
|
|
|
<OutputPath>..\..\..\..\..\$(Platform)\$(Configuration)\modules\launcher\Plugins\Service\</OutputPath>
|
2021-01-06 11:40:07 +01:00
|
|
|
</PropertyGroup>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
2022-04-21 04:59:43 -04:00
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
2021-01-06 11:40:07 +01:00
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
|
|
|
<DebugType>full</DebugType>
|
|
|
|
<Optimize>false</Optimize>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2022-04-21 04:59:43 -04:00
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
2021-01-06 11:40:07 +01:00
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<None Include="plugin.json">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-02-13 12:10:33 -05:00
|
|
|
<PackageReference Include="System.ServiceProcess.ServiceController" />
|
2021-01-06 11:40:07 +01:00
|
|
|
</ItemGroup>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
2021-01-06 11:40:07 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\..\Wox.Plugin\Wox.Plugin.csproj" />
|
2021-02-23 09:53:08 +01:00
|
|
|
<ProjectReference Include="..\..\Wox.Infrastructure\Wox.Infrastructure.csproj" />
|
2021-01-06 11:40:07 +01:00
|
|
|
</ItemGroup>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
2021-01-06 11:40:07 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
</Compile>
|
|
|
|
</ItemGroup>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
2021-01-06 11:40:07 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
</EmbeddedResource>
|
|
|
|
</ItemGroup>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
2021-01-06 11:40:07 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<None Update="Images\service.dark.png">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="Images\service.light.png">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-12-01 09:40:41 -05:00
|
|
|
|
2021-01-06 11:40:07 +01:00
|
|
|
</Project>
|