Black Rock Reporting Azure Function
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

BlackRockReportFunction.csproj 1.2KB

12345678910111213141516171819202122232425262728
  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.Azure.Functions.Worker.Extensions.Storage" Version="4.0.4" />
  11. <PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Timer" Version="4.1.0" />
  12. <PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.3.0" OutputItemType="Analyzer" />
  13. <PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.6.0" />
  14. <PackageReference Include="Microsoft.Azure.WebJobs.Extensions.SendGrid" Version="3.0.2" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <None Update="host.json">
  18. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  19. </None>
  20. <None Update="local.settings.json">
  21. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  22. <CopyToPublishDirectory>Never</CopyToPublishDirectory>
  23. </None>
  24. </ItemGroup>
  25. <ItemGroup>
  26. <Using Include="System.Threading.ExecutionContext" Alias="ExecutionContext" />
  27. </ItemGroup>
  28. </Project>