Skip to content
Draft
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -335,3 +335,4 @@ prime/

# used by the C# Dev Kit (VS Code extension)
.mono/
.github/copilot-instructions.md
2 changes: 1 addition & 1 deletion edge-agent/docker/linux/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/aspnet:8.0-alpine
FROM mcr.microsoft.com/dotnet/aspnet:10.0-alpine

ARG EXE_DIR=.
ARG TARGETPLATFORM
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,13 @@
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<Configurations>Debug;Release;CheckInBuild</Configurations>
<HighEntropyVA>true</HighEntropyVA>
<NoWarn>$(NoWarn);AD0001</NoWarn>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Akka.Streams" Version="1.4.49" />
<!--
We have a transitive dependency on System.Net.Http via Akka.Streams/1.4.49. Use an explicit
reference here to override the version and fix a vulnerability. See
https://github.com/advisories/GHSA-7jgj-8wvc-jh57.
-->
<PackageReference Include="System.Net.Http" Version="4.3.4" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="5.0.0" />
<PackageReference Include="System.IO.FileSystem.Watcher" Version="4.3.0" />
<PackageReference Include="System.Reactive" Version="4.1.3" />
<PackageReference Include="System.Threading.Thread" Version="4.3.0" />
<PackageReference Include="Akka.Streams" Version="1.5.64" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.5" />
<PackageReference Include="System.Reactive" Version="6.1.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading
Loading