mirror of
https://github.com/pnp/sp-dev-fx-webparts.git
synced 2025-02-20 20:11:13 +00:00
Bumps [Azure.Identity](https://github.com/Azure/azure-sdk-for-net) from 1.10.4 to 1.11.0. - [Release notes](https://github.com/Azure/azure-sdk-for-net/releases) - [Commits](https://github.com/Azure/azure-sdk-for-net/compare/Azure.Identity_1.10.4...Azure.Identity_1.11.0) --- updated-dependencies: - dependency-name: Azure.Identity dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
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.11.0" />
|
|
<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> |