File tree 3 files changed +1
-24
lines changed
coverlet.core.coverage.tests
3 files changed +1
-24
lines changed Original file line number Diff line number Diff line change 26
26
<IncludeAssets >runtime; build; native; contentfiles; analyzers</IncludeAssets >
27
27
</PackageReference >
28
28
<PackageReference Include =" System.Linq.Async" />
29
- <PackageReference Include =" System.Reflection.Metadata" />
30
- <PackageReference Include =" System.Threading.Tasks.Extensions" />
31
29
</ItemGroup >
32
30
33
31
<ItemGroup >
34
32
<ProjectReference Include =" $(RepoRoot)src\coverlet.core\coverlet.core.csproj" />
35
33
<ProjectReference Include =" $(RepoRoot)test\coverlet.tests.utils\coverlet.tests.utils.csproj" />
36
- <ProjectReference Include =" $(RepoRoot)test\coverlet.tests.xunit.extensions\coverlet.tests.xunit.extensions.csproj" />
37
34
38
35
<ProjectReference Include =" $(RepoRoot)test\coverlet.core.tests.samples.netstandard\coverlet.core.tests.samples.netstandard.csproj" />
39
36
</ItemGroup >
Original file line number Diff line number Diff line change 1
- // Copyright (c) Toni Solarin-Sodara
1
+ // Copyright (c) Toni Solarin-Sodara
2
2
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3
3
4
4
using System ;
@@ -95,19 +95,4 @@ public void TargetActionThrows5Times()
95
95
if ( Calls < 6 ) throw new Exception ( "Simulating Failure" ) ;
96
96
}
97
97
}
98
-
99
- public class RetryTargetIOException
100
- {
101
- public int Calls { get ; set ; }
102
- public void TargetActionThrows ( )
103
- {
104
- Calls ++ ;
105
- throw new IOException ( "Simulating Failure" ) ;
106
- }
107
- public void TargetActionThrows5Times ( )
108
- {
109
- Calls ++ ;
110
- if ( Calls < 6 ) throw new Exception ( "Simulating Failure" ) ;
111
- }
112
- }
113
98
}
Original file line number Diff line number Diff line change 19
19
<PackageReference Include =" Microsoft.NET.Test.Sdk" />
20
20
<PackageReference Include =" Microsoft.Extensions.Logging.Abstractions" />
21
21
<PackageReference Include =" Moq" />
22
- <PackageReference Include =" NuGet.Versioning" />
23
22
<PackageReference Include =" ReportGenerator.Core" />
24
23
<PackageReference Include =" System.Linq.Async" />
25
24
<PackageReference Include =" System.Reflection.Metadata" />
28
27
<PrivateAssets >all</PrivateAssets >
29
28
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
30
29
</PackageReference >
31
- <PackageReference Include =" System.Collections.Immutable" />
32
- <PackageReference Include =" System.Buffers" />
33
- <PackageReference Include =" System.Memory" />
34
- <PackageReference Include =" System.Text.Encoding.CodePages" />
35
30
</ItemGroup >
36
31
37
32
<ItemGroup >
You can’t perform that action at this time.
0 commit comments