1
- <Project Sdk =" Microsoft.NET.Sdk.Web" >
2
-
1
+ <Project Sdk =" Microsoft.NET.Sdk" >
3
2
<PropertyGroup >
4
- <TargetFramework >net6.0</TargetFramework >
5
- <Nullable >enable</Nullable >
3
+ <TargetFramework >net8.0</TargetFramework >
4
+ <AzureFunctionsVersion >v4</AzureFunctionsVersion >
5
+ <OutputType >Exe</OutputType >
6
6
<ImplicitUsings >enable</ImplicitUsings >
7
+ <Nullable >enable</Nullable >
7
8
</PropertyGroup >
8
-
9
9
<ItemGroup >
10
- <PackageReference Include =" Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version =" 6.0.0" />
11
- <PackageReference Include =" Swashbuckle.AspNetCore" Version =" 6.2.3" />
10
+ <PackageReference Include =" Microsoft.Azure.Functions.Worker" Version =" [2.0.0,)" />
11
+ <PackageReference Include =" Microsoft.Azure.Functions.Worker.Extensions.Http" Version =" [3.2.0,)" />
12
+ <PackageReference Include =" Microsoft.Azure.Functions.Worker.Extensions.OpenApi" Version =" [1.5.1,)" />
13
+ <PackageReference Include =" Microsoft.Azure.Functions.Worker.Sdk" Version =" [2.0.0,)" />
14
+ <PackageReference Include =" Microsoft.Data.SqlClient" Version =" [5.2.2,)" />
15
+ <PackageReference Include =" Microsoft.IdentityModel.Protocols.OpenIdConnect" Version =" [8.3.0,)" />
16
+ <PackageReference Include =" Microsoft.PowerPlatform.Dataverse.Client" Version =" [1.2.2,)" />
17
+ <PackageReference Include =" System.IdentityModel.Tokens.Jwt" Version =" [8.3.0,)" />
18
+ </ItemGroup >
19
+ <ItemGroup >
20
+ <None Update =" host.json" >
21
+ <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
22
+ </None >
23
+ <None Update =" local.settings.json" >
24
+ <CopyToOutputDirectory >PreserveNewest</CopyToOutputDirectory >
25
+ <CopyToPublishDirectory >Never</CopyToPublishDirectory >
26
+ </None >
27
+ </ItemGroup >
28
+ <ItemGroup >
29
+ <Using Include =" System.Threading.ExecutionContext" Alias =" ExecutionContext" />
12
30
</ItemGroup >
13
-
14
31
</Project >
0 commit comments