Skip to content

Commit ac4fbcc

Browse files
committed
Updated dotnet version to .net8.0
1 parent 4c52693 commit ac4fbcc

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

samples/fhir-empi-integration/empi-connector/EMPIShim/EMPIShim.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFramework>net6.0</TargetFramework>
3+
<TargetFramework>net8.0</TargetFramework>
44
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
55
<_FunctionsSkipCleanOutput>true</_FunctionsSkipCleanOutput>
66
</PropertyGroup>
77
<ItemGroup>
8-
<PackageReference Include="Azure.Identity" Version="1.11.0" />
8+
<PackageReference Include="Azure.Identity" Version="1.12.0" />
99
<PackageReference Include="Azure.Search.Documents" Version="11.5.1" />
1010
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.EventHubs" Version="6.2.0" />
11-
<PackageReference Include="Microsoft.Identity.Client" Version="4.60.3" />
12-
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.3.0" />
11+
<PackageReference Include="Microsoft.Identity.Client" Version="4.61.3" />
12+
<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.4.0" />
1313
<PackageReference Include="Polly" Version="8.3.1" />
1414
<PackageReference Include="System.IdentityModel.Tokens.Jwt" Version="7.5.0" />
1515
</ItemGroup>

samples/fhir-empi-integration/empi-connector/EMPIShim/EMPIUpdates.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ public static class EMPIUpdates
3030
private static IEMPIProvider _provider = Utils.EMPIProviderGetInstance(Utils.GetEnvironmentVariable("EMPIProvider", "EMPIShim.NoOpEMPIProvider"));
3131

3232
[FunctionName("EMPIUpdates")]
33-
public static async Task Run([EventHubTrigger("empievents", Connection = "evconnect")] EventData[] events, ILogger log)
33+
public static async Task Run([EventHubTrigger("empieventhub", Connection = "evconnect")] EventData[] events, ILogger log)
3434
{
35+
log.LogInformation($"Empi Updates triggered");
3536
var exceptions = new List<Exception>();
3637

3738
foreach (EventData eventData in events)

0 commit comments

Comments
 (0)