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
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@

<ItemGroup>
<!-- AOT-friendly dependencies only -->
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.10" />
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.10" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.10" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="9.0.10" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Options" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="10.0.1" />
<PackageReference Include="System.Memory" Version="4.6.3" />
<PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.1.2" />
<!-- High-performance serialization (AOT-compatible source generator) -->
Expand All @@ -50,8 +50,8 @@
<ItemGroup><!-- Analyzers for AOT compatibility -->


<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.100" />
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="9.0.10" />
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.101" />
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="9.0.11" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Core/DotCompute.Core/DotCompute.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@


<ItemGroup>
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.100" />
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.101" />
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="9.0.10" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Core/DotCompute.Memory/DotCompute.Memory.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.100" />
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.101" />
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="9.0.10" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@

<!-- Analyzers -->
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.100">
<PackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.101">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
<PackageReference Include="Microsoft.CodeAnalysis.CSharp.Workspaces" Version="5.0.0" />

<!-- Command line parsing - using beta4 for API compatibility -->
<PackageReference Include="System.CommandLine" Version="2.0.0-beta4.22272.1" />
<PackageReference Include="System.CommandLine" Version="2.0.1" />

<!-- JSON output -->
<PackageReference Include="System.Text.Json" Version="9.0.10" />
<PackageReference Include="System.Text.Json" Version="10.0.1" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.100" PrivateAssets="all" />
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.101" PrivateAssets="all" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion src/Runtime/DotCompute.Plugins/DotCompute.Plugins.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.100" />
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.101" />
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="9.0.10" />
</ItemGroup>

Expand Down
2 changes: 1 addition & 1 deletion src/Runtime/DotCompute.Runtime/DotCompute.Runtime.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
</ItemGroup>

<ItemGroup>
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.100" />
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="10.0.101" />
<PackageReference Include="Microsoft.NET.ILLink.Tasks" Version="9.0.10" />
</ItemGroup>

Expand Down
Loading