Temporary repo to track my changes on LTS functions app porting
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
2.1 KiB

  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <AzureFunctionsVersion>v4</AzureFunctionsVersion>
  5. <OutputType>Exe</OutputType>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <Nullable>enable</Nullable>
  8. <RootNamespace>CDP</RootNamespace>
  9. <UserSecretsId>efb0fbf7-afd0-468d-9e4c-605bbab91059</UserSecretsId>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <Content Include="local.settings.json" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <FrameworkReference Include="Microsoft.AspNetCore.App" />
  16. <PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.6.0" />
  17. <PackageReference Include="Azure.Storage.Blobs" Version="12.19.1" />
  18. <PackageReference Include="Microsoft.Azure.Cosmos" Version="3.39.1" />
  19. <PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.22.0" />
  20. <PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.DurableTask" Version="1.1.1" />
  21. <PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.1.0" />
  22. <PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="1.2.1" />
  23. <PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.ServiceBus" Version="5.17.0" />
  24. <PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.17.2" />
  25. <PackageReference Include="Microsoft.ApplicationInsights.WorkerService" Version="2.22.0" />
  26. <PackageReference Include="Microsoft.Azure.Functions.Worker.ApplicationInsights" Version="1.2.0" />
  27. <PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="8.0.0" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <None Update="host.json">
  31. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  32. </None>
  33. <None Update="local.settings.json">
  34. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  35. <CopyToPublishDirectory>Never</CopyToPublishDirectory>
  36. </None>
  37. </ItemGroup>
  38. <ItemGroup>
  39. <Using Include="System.Threading.ExecutionContext" Alias="ExecutionContext" />
  40. </ItemGroup>
  41. </Project>