Skip to content

Commit

Permalink
Upgraded from .NET 8 to .NET 9
Browse files Browse the repository at this point in the history
  • Loading branch information
morrisonbrett committed Nov 17, 2024
1 parent b019bd7 commit 6632c73
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion TrueVote.Comms/Services/ServiceBusReceiver.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public async Task StartListeningAsync()
{
var message = args.Message.Body.ToObjectFromJson<ServiceBusCommsMessage>();

await _messageProcessor.ProcessMessageAsync(message);
await _messageProcessor.ProcessMessageAsync(message!);

await args.CompleteMessageAsync(args.Message);
}
Expand Down
8 changes: 4 additions & 4 deletions TrueVote.Comms/TrueVote.Comms.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
<OutputType>Exe</OutputType>
<ImplicitUsings>enable</ImplicitUsings>
Expand All @@ -15,12 +15,12 @@
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Azure.Core" Version="1.44.1" />
<PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="6.0.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.23.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="2.0.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.ServiceBus" Version="5.22.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Timer" Version="4.3.1" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.18.1" />
<PackageReference Include="Microsoft.Rest.ClientRuntime" Version="2.3.24" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="2.0.0" />
<PackageReference Include="Nostr.Client" Version="2.0.0" />
</ItemGroup>
<ItemGroup>
Expand Down

0 comments on commit 6632c73

Please sign in to comment.