TEAMModelOS.FunctionV4.csproj 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <AzureFunctionsVersion>v4</AzureFunctionsVersion>
  5. <OutputType>Exe</OutputType>
  6. <_FunctionsSkipCleanOutput>true</_FunctionsSkipCleanOutput>
  7. <SignAssembly>true</SignAssembly>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  10. <DefineConstants>DEBUG;TRACE</DefineConstants>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <!--<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.CosmosDB" Version="3.0.10" />-->
  14. <!--<PackageReference Include="Microsoft.NET.Sdk.Functions" Version="4.0.1" />-->
  15. <!--<PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.3.0" />-->
  16. <PackageReference Include="Microsoft.Azure.Functions.Worker.Sdk" Version="1.3.0" OutputItemType="Analyzer" />
  17. <PackageReference Include="Microsoft.Azure.Functions.Worker" Version="1.6.0" />
  18. <PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.0.13" />
  19. <PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Storage" Version="5.0.0" />
  20. <PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.ServiceBus" Version="5.0.0-beta.6" />
  21. <PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.CosmosDB" Version="4.0.0-preview2" />
  22. <!--<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.CosmosDB" Version="3.0.9" />-->
  23. <PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Storage.Blobs" Version="5.0.0" />
  24. <PackageReference Include="SPS.SBCompressor" Version="0.5.2" />
  25. <PackageReference Include="System.Net.NameResolution" Version="4.3.0" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <ProjectReference Include="..\TEAMModelOS.SDK\TEAMModelOS.SDK.csproj" />
  29. </ItemGroup>
  30. <ItemGroup>
  31. <None Update="host.json">
  32. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  33. </None>
  34. <None Update="local.settings.json">
  35. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  36. <CopyToPublishDirectory>Never</CopyToPublishDirectory>
  37. </None>
  38. </ItemGroup>
  39. </Project>