-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathBellatrix.API.csproj
More file actions
33 lines (28 loc) · 1.51 KB
/
Bellatrix.API.csproj
File metadata and controls
33 lines (28 loc) · 1.51 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
28
29
30
31
32
33
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\shared\SharedAssemblyInfo.targets" />
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<NoWarn>NU1701;NU1702;NU1705;NU1608;NU1902;MSTEST0001</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="JsonSchema.Net" Version="9.1.0" />
<PackageReference Include="NUnit" Version="4.4.0" />
<PackageReference Include="Polly" Version="8.6.5" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="10.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="10.0.1" />
<PackageReference Include="RestSharp" Version="113.0.0" />
<PackageReference Include="MSTest" Version="4.0.2" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Bellatrix.Allure\Bellatrix.Results.Allure.csproj" />
<ProjectReference Include="..\Bellatrix.BugReporting\Bellatrix.BugReporting.csproj" />
<ProjectReference Include="..\Bellatrix.Core\Bellatrix.Core.csproj" />
<ProjectReference Include="..\Bellatrix.DynamicTestCases\Bellatrix.DynamicTestCases.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="Microsoft.CodeAnalysis.NetAnalyzers" Version="6.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>