Implementation of basic PatchComplianceTask. First real iteration, basic/raw asf.
47 lines
2.7 KiB
XML
47 lines
2.7 KiB
XML
<!--
|
|
This enabled central package management.
|
|
This allows for controling all NuGet packages within the Directory.Packages.props file
|
|
See https://learn.microsoft.com/nuget/consume-packages/Central-Package-Management?WT.mc_id=DT-MVP-5003472
|
|
-->
|
|
<Project>
|
|
<!--
|
|
Uncomment if you need to enable inclusion of another Directory.Packages.props file from a parent directory
|
|
<Import Project="$([MSBuild]::GetPathOfFileAbove(Directory.Packages.props, $(MSBuildThisFileDirectory)..))" />
|
|
-->
|
|
<!-- This property enables the Central Package Management feature -->
|
|
<PropertyGroup>
|
|
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
|
|
<!-- https://learn.microsoft.com/nuget/consume-packages/Central-Package-Management?WT.mc_id=DT-MVP-5003472#transitive-pinning -->
|
|
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
|
|
</PropertyGroup>
|
|
<!--
|
|
This defines the set of centrally managed packages.
|
|
This would typically list all NuGet packages used within this solution.
|
|
-->
|
|
<ItemGroup>
|
|
<PackageVersion Include="CommunityToolkit.Mvvm" Version="8.4.0" />
|
|
<PackageVersion Include="coverlet.collector" Version="6.0.4">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageVersion>
|
|
<PackageVersion Include="Hardcodet.NotifyIcon.Wpf" Version="2.0.1" />
|
|
<PackageVersion Include="MaterialDesignColors" Version="5.2.2-ci976" />
|
|
<PackageVersion Include="MaterialDesignThemes" Version="5.2.2-ci976" />
|
|
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="9.0.3" />
|
|
<PackageVersion Include="Microsoft.Extensions.Hosting" Version="9.0.3" />
|
|
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
|
|
<PackageVersion Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageVersion Include="System.Management" Version="10.0.0-preview.3.25171.5" />
|
|
<PackageVersion Include="WixToolset.UI.wixext" Version="6.0.0" />
|
|
<PackageVersion Include="Moq" Version="4.20.72" />
|
|
<PackageVersion Include="Moq.AutoMock" Version="3.5.0" />
|
|
<PackageVersion Include="System.Text.Json" Version="9.0.3" />
|
|
<PackageVersion Include="xunit" Version="2.9.3" />
|
|
<PackageVersion Include="xunit.runner.visualstudio" Version="3.0.2">
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageVersion>
|
|
<PackageVersion Include="System.ServiceProcess.ServiceController" Version="9.0.3" />
|
|
<PackageVersion Include="Microsoft.Extensions.Hosting.WindowsServices" Version="9.0.3" />
|
|
</ItemGroup>
|
|
</Project> |