Black Rock Reporting Azure Function
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

BlackRockReportFunction.csproj 1.0KB

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