mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
* Removed x64 specific config from Launcher project * Microsoft.Plugin.Program normalization * UnitConverter projects * VSCodeWorkspaces project normalization * Websearch plugin project normalization * Folder plugin normalization * Indexer plugin project normalization * Plugin Program UnitTest project normalization * Shell plugin project normalization * Uri Plugin projects normalization * WindowWalker plugin projects normalization * Calculator plugin projects normalization * Registry plugin projects normalization * Service plugin project normalization * System plugin projects normalization * TimeDate and TimeZone plugin projects normalization * Windows Settings plugin project normalization * Windows Terminal plugin projects normalization * PowerLauncher and PowerLauncher.Telemetry project normalization * Wox projects normalization * Updated PowerToys solution config * Added Platforms/PlatformTarget and updated RID * Remove merge text * Remove SolutionDir from path * Adding Platform and PlatformTarget back into Unit Tests * Update PowerLauncher.csproj Set RID back to win- * Fixed OutputPath in Plugins
36 lines
1.4 KiB
XML
36 lines
1.4 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<Import Project="..\..\..\Version.props" />
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
|
|
|
|
<Version>$(Version).0</Version>
|
|
<Authors>Microsoft Corporation</Authors>
|
|
<Description>PowerToys PowerLauncher Telemetry</Description>
|
|
<AssemblyName>PowerToys.PowerLauncher.Telemetry</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.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="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
<PackageReference Include="StyleCop.Analyzers">
|
|
<Version>1.1.118</Version>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
</Project>
|