2022-01-18 15:52:22 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
2022-03-23 17:35:52 +01:00
|
|
|
|
<Import Project="..\..\..\..\Version.props" />
|
2020-11-26 03:35:48 -06:00
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>Library</OutputType>
|
2022-02-07 06:08:30 -08:00
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
2021-01-08 16:11:30 +01:00
|
|
|
|
<RootNamespace>Microsoft.PowerToys.Run.Plugin.System</RootNamespace>
|
|
|
|
|
|
<AssemblyName>Microsoft.PowerToys.Run.Plugin.System</AssemblyName>
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<Version>$(Version).0</Version>
|
|
|
|
|
|
<useWPF>true</useWPF>
|
|
|
|
|
|
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
|
|
|
|
|
|
<AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath>
|
2022-04-21 04:59:43 -04:00
|
|
|
|
<OutputPath>..\..\..\..\..\$(Platform)\$(Configuration)\modules\launcher\Plugins\System\</OutputPath>
|
2020-11-26 03:35:48 -06:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2022-04-21 04:59:43 -04:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Debug'">
|
2020-11-26 03:35:48 -06: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'">
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<DefineConstants>TRACE</DefineConstants>
|
|
|
|
|
|
<Optimize>true</Optimize>
|
|
|
|
|
|
<DebugType>pdbonly</DebugType>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\Wox.Infrastructure\Wox.Infrastructure.csproj" />
|
|
|
|
|
|
<ProjectReference Include="..\..\Wox.Plugin\Wox.Plugin.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Include="..\..\..\..\codeAnalysis\GlobalSuppressions.cs">
|
|
|
|
|
|
<Link>GlobalSuppressions.cs</Link>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
<AdditionalFiles Include="..\..\..\..\codeAnalysis\StyleCop.json">
|
|
|
|
|
|
<Link>StyleCop.json</Link>
|
|
|
|
|
|
</AdditionalFiles>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="StyleCop.Analyzers">
|
|
|
|
|
|
<Version>1.1.118</Version>
|
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
|
</PackageReference>
|
2022-02-11 17:42:17 +01:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0">
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
2022-02-11 17:42:17 +01:00
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
2020-11-26 03:35:48 -06:00
|
|
|
|
</PackageReference>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Include="plugin.json">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2022-02-18 15:19:40 +01:00
|
|
|
|
<PackageReference Include="JetBrains.Annotations" Version="2021.3.0" />
|
2020-11-26 03:35:48 -06:00
|
|
|
|
</ItemGroup>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="Images\lock.light.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
<None Update="Images\lock.dark.png">
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="Images\logoff.light.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
<None Update="Images\logoff.dark.png">
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="Images\recyclebin.light.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
<None Update="Images\recyclebin.dark.png">
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="Images\restart.light.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
<None Update="Images\restart.dark.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="Images\shutdown.light.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="Images\shutdown.dark.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="Images\sleep.light.png">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="Images\sleep.dark.png">
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
<None Update="Images\firmwareSettings.light.png">
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
<None Update="Images\firmwareSettings.dark.png">
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
<None Update="Images\networkAdapter.light.png">
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2022-03-23 17:35:52 +01:00
|
|
|
|
<None Update="Images\networkAdapter.dark.png">
|
2020-11-26 03:35:48 -06:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<Compile Update="Properties\Resources.Designer.cs">
|
|
|
|
|
|
<DesignTime>True</DesignTime>
|
|
|
|
|
|
<AutoGen>True</AutoGen>
|
|
|
|
|
|
<DependentUpon>Resources.resx</DependentUpon>
|
|
|
|
|
|
</Compile>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<EmbeddedResource Update="Properties\Resources.resx">
|
|
|
|
|
|
<Generator>ResXFileCodeGenerator</Generator>
|
|
|
|
|
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
|
|
|
|
|
</EmbeddedResource>
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|