2021-01-06 11:40:07 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2024-08-09 09:18:56 -07:00
|
|
|
<!-- Look at Directory.Build.props in root for common stuff as well -->
|
|
|
|
|
<Import Project="..\..\..\..\Common.Dotnet.CsWinRT.props" />
|
2021-01-06 11:40:07 +01:00
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<RootNamespace>Microsoft.PowerToys.Run.Plugin.Service</RootNamespace>
|
|
|
|
|
<AssemblyName>Microsoft.PowerToys.Run.Plugin.Service</AssemblyName>
|
2024-08-05 06:32:05 -07:00
|
|
|
|
2021-01-06 11:40:07 +01:00
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
2022-05-19 14:02:08 +01:00
|
|
|
<GenerateSatelliteAssembliesForCore>true</GenerateSatelliteAssembliesForCore>
|
2023-07-20 00:12:46 +01:00
|
|
|
<OutputPath>..\..\..\..\..\$(Platform)\$(Configuration)\RunPlugins\Service\</OutputPath>
|
2021-01-06 11:40:07 +01:00
|
|
|
</PropertyGroup>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
2021-01-06 11:40:07 +01:00
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="plugin.json">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2023-02-13 12:10:33 -05:00
|
|
|
<PackageReference Include="System.ServiceProcess.ServiceController" />
|
2024-11-13 01:13:23 +00:00
|
|
|
<PackageReference Include="System.Diagnostics.EventLog">
|
|
|
|
|
<ExcludeAssets>runtime</ExcludeAssets> <!-- Should already be present on .net sdk runtime, so we avoid the conflicting runtime version from nuget -->
|
|
|
|
|
</PackageReference>
|
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>
|