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
45 lines
1.8 KiB
XML
45 lines
1.8 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<IsPackable>false</IsPackable>
|
|
<RootNamespace>Microsoft.Plugin.WindowWalker.UnitTests</RootNamespace>
|
|
<PlatformTarget>$(Platform)</PlatformTarget>
|
|
<Platforms>$(Platform)</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Moq" Version="4.16.1" />
|
|
<PackageReference Include="MSTest.TestAdapter" Version="2.2.3" />
|
|
<PackageReference Include="MSTest.TestFramework" Version="2.2.3" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
|
|
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Microsoft.Plugin.WindowWalker\Microsoft.Plugin.WindowWalker.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>
|
|
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
</Project>
|