-
Notifications
You must be signed in to change notification settings - Fork 242
Expand file tree
/
Copy pathStryker.Core.UnitTest.csproj
More file actions
54 lines (51 loc) · 2.32 KB
/
Copy pathStryker.Core.UnitTest.csproj
File metadata and controls
54 lines (51 loc) · 2.32 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="LaunchDarkly.EventSource" />
<PackageReference Include="Microsoft.CodeAnalysis.VisualBasic" />
<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>
<!--This avoids conflict with System.Text.RegularExpression-->
<ItemGroup>
<PackageReference Include="Stryker.Regex.Parser">
<Aliases>StrykerRegexParser</Aliases>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\Stryker.Abstractions\Stryker.Abstractions.csproj" />
<ProjectReference Include="..\..\Stryker.Solutions\Stryker.Solutions.csproj" />
<ProjectReference Include="..\..\Stryker.Utilities\Stryker.Utilities.csproj" />
<ProjectReference Include="..\Stryker.Core\Stryker.Core.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="TestResources\ExampleSourceFile.cs">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<Content Include="TestResources\ExampleTestFileA.cs">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<None Include="TestResources\ExampleTestFileB.cs">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<Content Include="TestResources\ExampleTestFilePreprocessorSymbols.cs">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Compile Remove="TestResources\ExampleTestFileA.cs" />
<Content Include="TestResources\ExampleTestFileA.cs" />
<Compile Remove="TestResources\ExampleTestFileB.cs" />
<Content Include="TestResources\ExampleTestFileB.cs" />
<Compile Remove="TestResources\ExampleTestFilePreprocessorSymbols.cs" />
<Content Include="TestResources\ExampleTestFilePreprocessorSymbols.cs" />
<None Remove="TestResources\StrongNameKeyFile.snk" />
<Content Include="TestResources\StrongNameKeyFile.snk">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>