Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<MicrosoftTestSdkVersion Condition="'$(MicrosoftTestSdkVersion)' == ''">17.9.0</MicrosoftTestSdkVersion>
<NUnitVersion Condition="'$(NUnitVersion)' == ''">4.1.0</NUnitVersion>
<NUnit3TestAdapterVersion Condition="'$(NUnit3TestAdapterVersion)' == ''">4.5.0</NUnit3TestAdapterVersion>
<FluentAssertionsVersion Condition="'$(FluentAssertionsVersion)' == ''">6.12.0</FluentAssertionsVersion>
<FluentAssertionsVersion Condition="'$(FluentAssertionsVersion)' == ''">[7.2.0]</FluentAssertionsVersion>
<CoverletCollectorVersion Condition="'$(CoverletCollectorVersion)' == ''">6.0.2</CoverletCollectorVersion>
<NewtonsoftJsonVersion Condition="'$(NewtonsoftJsonVersion)' == ''">13.0.3</NewtonsoftJsonVersion>
<XamarinUITestVersion Condition="'$(XamarinUITestVersion)' == ''">4.3.4</XamarinUITestVersion>
Expand Down
1 change: 1 addition & 0 deletions src/Uno.Templates/content/unoapp/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<!--#if (useTestSolutionFolder)-->
<PackageVersion Include="coverlet.collector" Version="$CoverletCollector$" />
<PackageVersion Include="FluentAssertions" Version="$FluentAssertions$" />
<!--Pinned to this version to prevent unintentional upgrades, later versions than 7.2.0 are under paid licensing-->
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="$MicrosoftTestSdk$" />
<PackageVersion Include="NUnit" Version="$NUnit$" />
<PackageVersion Include="NUnit3TestAdapter" Version="$NUnit3TestAdapter$" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

<ItemGroup>
<PackageReference Include="FluentAssertions" VersionOverride="$FluentAssertions$" />
<!--Pinned to this version to prevent unintentional upgrades, later versions than 7.2.0 are under paid licensing-->
<PackageReference Include="Microsoft.NET.Test.Sdk" VersionOverride="$MicrosoftTestSdk$" />
<PackageReference Include="Newtonsoft.Json" VersionOverride="$NewtonsoftJson$" />
<PackageReference Include="NUnit" VersionOverride="$NUnit$" />
Expand Down
Loading