Skip to content
Merged
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
4 changes: 2 additions & 2 deletions src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
<!-- Include PDB in the built .nupkg -->
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
<IncludePackageReferencesDuringMarkupCompilation>true</IncludePackageReferencesDuringMarkupCompilation>
<CoreVersion>10.0.6</CoreVersion>
<AvaloniaVersion>12.0.1</AvaloniaVersion>
<CoreVersion>10.0.7</CoreVersion>
<AvaloniaVersion>12.0.2</AvaloniaVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(GITHUB_ACTIONS)' == 'true'">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
<!-- Align MSBuild dependencies to avoid NU1605 downgrades from transitive EF tooling -->
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="18.4.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="18.4.0" PrivateAssets="all" />
<!-- Fix security vulnerability GHSA-37gx-xxp4-5rgx and GHSA-w3x6-4m5h-cxqf -->
<PackageReference Include="System.Security.Cryptography.Xml" Version="10.0.7" />
</ItemGroup>

<ItemGroup Condition=" $(TargetFramework.StartsWith('net9')) ">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
<!-- Align MSBuild dependencies to avoid NU1605 downgrades from transitive EF tooling -->
<PackageReference Include="Microsoft.Build.Tasks.Core" Version="18.4.0" PrivateAssets="all" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="18.4.0" PrivateAssets="all" />
<!-- Fix security vulnerability GHSA-37gx-xxp4-5rgx and GHSA-w3x6-4m5h-cxqf -->
<PackageReference Include="System.Security.Cryptography.Xml" Version="10.0.7" />
</ItemGroup>

<ItemGroup Condition=" $(TargetFramework.StartsWith('net9')) ">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Maui.Controls" Version="10.0.51" />
<PackageReference Include="Microsoft.Maui.Essentials" Version="10.0.51" />
<PackageReference Include="Microsoft.Maui.Controls" Version="10.0.60" />
<PackageReference Include="Microsoft.Maui.Essentials" Version="10.0.60" />
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="$(CoreVersion)" />
</ItemGroup>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<Using Include="TUnit.Core" />
<Using Include="TUnit.Core.Executors" />
<Using Include="TUnit.Core.Interfaces" />
<Using Include="TUnit.Assertions"/>
<Using Include="TUnit.Assertions.Extensions"/>
<Using Include="TUnit.Assertions" />
<Using Include="TUnit.Assertions.Extensions" />
<Using Include="System" />
<Using Include="System.Collections.Generic" />
<Using Include="System.ComponentModel" />
Expand All @@ -39,4 +39,7 @@
<Using Include="System.Threading" />
<Using Include="System.Threading.Tasks" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="TUnit" Version="1.43.11" />
</ItemGroup>
</Project>
Loading