-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathunittests-function.csproj
53 lines (45 loc) · 2.1 KB
/
unittests-function.csproj
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>unittests_function</RootNamespace>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<None Remove="TestData\ResourceVersion-1.0.json" />
<None Remove="TestData\ResourceVersion-3.1-preview.3.json" />
<None Remove="TestData\ResourceVersion-5.1-preview.3.json" />
<None Remove="TestData\TestEvent.json" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestData\ResourceVersion-3.1-preview.3.json" />
<EmbeddedResource Include="TestData\ResourceVersion-5.1-preview.3.json" />
<EmbeddedResource Include="TestData\TestEvent.json" />
</ItemGroup>
<ItemGroup>
<!-- resolves MSB3277 -->
<PackageReference Include="System.Text.Json" Version="6.0.2" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.2.0" />
<PackageReference Include="NSubstitute" Version="4.3.0" />
<PackageReference Include="NSubstitute.Analyzers.CSharp" Version="1.0.15">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.1.2">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\aggregator-function\aggregator-function.csproj" />
<ProjectReference Include="..\aggregator-webshared\aggregator-webshared.csproj" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="TestData\ResourceVersion-1.0.json" />
</ItemGroup>
</Project>