-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathUnitTestEx.Azure.Functions.csproj
More file actions
27 lines (22 loc) · 1.14 KB
/
Copy pathUnitTestEx.Azure.Functions.csproj
File metadata and controls
27 lines (22 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net6.0;net7.0;net8.0;net9.0;net10.0</TargetFrameworks>
<RootNamespace>UnitTestEx</RootNamespace>
<Product>UnitTestEx</Product>
<Title>UnitTestEx Azure Functions Test Extensions.</Title>
<Description>UnitTestEx Test Extensions.</Description>
<PackageTags>unittestex azure function unit test unittest</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Azure.Functions.Extensions" Version="1.1.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.Http" Version="3.2.0" />
<PackageReference Include="Microsoft.Azure.Functions.Worker.Extensions.ServiceBus" Version="5.22.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.Http" Version="3.2.0" />
<PackageReference Include="Microsoft.Azure.WebJobs.Extensions.ServiceBus" Version="5.16.4" />
<PackageReference Include="Newtonsoft.Json.Bson" Version="1.0.3" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\UnitTestEx\UnitTestEx.csproj" />
</ItemGroup>
<Import Project="..\..\Common.targets" />
</Project>