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.

34 lines
1.7 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. </PropertyGroup>
  10. <ItemGroup>
  11. <FrameworkReference Include="Microsoft.AspNetCore.App" />
  12. <PackageReference Include="Azure.Security.KeyVault.Secrets" Version="4.6.0" />
  13. <PackageReference Include="Azure.Storage.Blobs" Version="12.19.1" />
  14. <PackageReference Include="Microsoft.Azure.Cosmos" Version="3.39.1" />
  15. <PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.22.0" />
  16. <PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.1.0" />
  17. <PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http.AspNetCore" Version="1.2.1" />
  18. <PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.ServiceBus" Version="5.17.0" />
  19. <PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.17.2" />
  20. <PackageReference Include="Microsoft.ApplicationInsights.WorkerService" Version="2.22.0" />
  21. <PackageReference Include="Microsoft.Azure.Functions.Worker.ApplicationInsights" Version="1.2.0" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <None Update="host.json">
  25. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  26. </None>
  27. <None Update="local.settings.json">
  28. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  29. <CopyToPublishDirectory>Never</CopyToPublishDirectory>
  30. </None>
  31. </ItemGroup>
  32. <ItemGroup>
  33. <Using Include="System.Threading.ExecutionContext" Alias="ExecutionContext" />
  34. </ItemGroup>
  35. </Project>