42 lines
2.0 KiB
XML
42 lines
2.0 KiB
XML
|
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
<PropertyGroup>
|
|||
|
<TargetFramework>net8.0</TargetFramework>
|
|||
|
<AzureFunctionsVersion>v4</AzureFunctionsVersion>
|
|||
|
<OutputType>Exe</OutputType>
|
|||
|
<ImplicitUsings>enable</ImplicitUsings>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
</PropertyGroup>
|
|||
|
<ItemGroup>
|
|||
|
<PackageReference Include="Arcus.WebApi.Hosting.AzureFunctions" Version="1.7.1" />
|
|||
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="8.0.1" />
|
|||
|
<PackageReference Include="Microsoft.Azure.Functions.Extensions" Version="1.1.0" />
|
|||
|
<PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.20.0" />
|
|||
|
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.1.0" />
|
|||
|
<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.16.2" />
|
|||
|
<PackageReference Include="Microsoft.ApplicationInsights.WorkerService" Version="2.21.0" />
|
|||
|
<PackageReference Include="Microsoft.Azure.Functions.Worker.ApplicationInsights" Version="1.0.0" />
|
|||
|
<PackageReference Include="Azure.Identity" Version="1.10.4" />
|
|||
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.OpenIdConnect" Version="8.0.1" />
|
|||
|
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="8.0.1" />
|
|||
|
|
|||
|
<PackageReference Include="Microsoft.Identity.Web" Version="2.16.1" />
|
|||
|
|
|||
|
|
|||
|
<PackageReference Include="Microsoft.Identity.Web.UI" Version="2.16.1" />
|
|||
|
<PackageReference Include="Microsoft.Identity.Web.GraphServiceClient" Version="2.16.1" />
|
|||
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|||
|
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<None Update="host.json">
|
|||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
</None>
|
|||
|
<None Update="local.settings.json">
|
|||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
<CopyToPublishDirectory>Never</CopyToPublishDirectory>
|
|||
|
</None>
|
|||
|
</ItemGroup>
|
|||
|
<ItemGroup>
|
|||
|
<Using Include="System.Threading.ExecutionContext" Alias="ExecutionContext" />
|
|||
|
</ItemGroup>
|
|||
|
</Project>
|