Black Rock Reporting Azure Function
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.

BlackRockReportFunction.csproj 1.3KB

1234567891011121314151617181920212223242526272829
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <AzureFunctionsVersion>v4</AzureFunctionsVersion>
  5. <OutputType>Exe</OutputType>
  6. <ImplicitUsings>enable</ImplicitUsings>
  7. <Nullable>enable</Nullable>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <PackageReference Include="Microsoft.AspNet.WebApi.Client" Version="5.2.9" />
  11. <PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Storage" Version="4.0.4" />
  12. <PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Timer" Version="4.1.0" />
  13. <PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.3.0" OutputItemType="Analyzer" />
  14. <PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.6.0" />
  15. <PackageReference Include="Microsoft.Azure.WebJobs.Extensions.SendGrid" Version="3.0.2" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <None Update="host.json">
  19. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  20. </None>
  21. <None Update="local.settings.json">
  22. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  23. <CopyToPublishDirectory>Never</CopyToPublishDirectory>
  24. </None>
  25. </ItemGroup>
  26. <ItemGroup>
  27. <Using Include="System.Threading.ExecutionContext" Alias="ExecutionContext" />
  28. </ItemGroup>
  29. </Project>