-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathBBT.StrategyPattern.Tests.csproj
More file actions
40 lines (35 loc) · 1.57 KB
/
BBT.StrategyPattern.Tests.csproj
File metadata and controls
40 lines (35 loc) · 1.57 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
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<IsPackable>false</IsPackable>
<AssemblyTitle>BBT.StrategyPattern.Tests</AssemblyTitle>
<Company>BBT Software AG</Company>
<Product>BBT.StrategyPattern</Product>
<Description>Tests for BBT.StrategyPattern</Description>
<Copyright>Copyright © BBT Software AG</Copyright>
<CodeAnalysisRuleSet>..\BBT.StrategyPattern.Tests.ruleset</CodeAnalysisRuleSet>
<OutputPath>bin\$(Configuration)\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugType>full</DebugType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.13.0" />
<PackageReference Include="FluentAssertions" Version="8.8.0" />
<PackageReference Include="Ninject" Version="3.3.6" />
<PackageReference Include="xunit" Version="2.9.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.0.2">
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\BBT.StrategyPattern\BBT.StrategyPattern.csproj" />
</ItemGroup>
</Project>