-
Notifications
You must be signed in to change notification settings - Fork 193
/
Copy pathStryker.CLI.UnitTest.csproj
52 lines (48 loc) · 2.07 KB
/
Stryker.CLI.UnitTest.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="Moq" />
<PackageReference Include="MSTest" />
<PackageReference Include="Shouldly" />
<PackageReference Include="Spectre.Console.Testing" />
<PackageReference Include="TestableIO.System.IO.Abstractions.TestingHelpers" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Stryker.CLI\Stryker.CLI.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="filled-stryker-config.json" CopyToOutputDirectory="Always" />
<None Include="filled-stryker-config.yaml" CopyToOutputDirectory="Always" />
<None Include="stryker-config.json" CopyToOutputDirectory="Always" />
<None Update="ConfigFiles\TwoWithYml\stryker-config.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ConfigFiles\TwoWithYml\stryker-config.yml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ConfigFiles\SingleDefaultYml\stryker-config.yml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ConfigFiles\SingleDefaultYaml\stryker-config.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ConfigFiles\MultipleDefaultWithJson\stryker-config.yaml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ConfigFiles\MultipleDefaultWithJson\stryker-config.yml">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ConfigFiles\MultipleDefaultWithJson\stryker-config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ConfigFiles\UserConfigWithDefault\custom_config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="ConfigFiles\UserConfigWithDefault\stryker-config.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>