Skip to content

Commit c0d5555

Browse files
committed
1 parent 8a65472 commit c0d5555

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/dotnet.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ jobs:
4949
with:
5050
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5151
license: ${{ secrets.NDEPENDLICENSE }}
52+
coveragefolder: ManagedCode.Storage.Tests
53+
baseline: recent
5254

5355
- name : coverlet
5456
uses: b3b00/coverlet-action@1.1.9

ManagedCode.Storage.AspNetExtensions/BaseController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
namespace ManagedCode.Storage.AspNetExtensions;
1414

15-
public class BaseController : Controller
15+
public class BaseController : ControllerBase
1616
{
1717
private readonly IStorage _storage;
1818

ManagedCode.Storage.Tests/TestContainers/TestContainers.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,7 @@ protected override GCSContainer Build()
133133

134134
protected override ServiceProvider ConfigureServices()
135135
{
136-
Container.GetConnectionString();
137-
136+
138137
var services = new ServiceCollection();
139138

140139
services.AddGCPStorageAsDefault(opt =>

Testcontainers.GCS/Testcontainers.GCS.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
<PropertyGroup>
33
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
44
<LangVersion>latest</LangVersion>
5+
<IsPackable>false</IsPackable>
56
</PropertyGroup>
67
<ItemGroup>
78
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1" PrivateAssets="All"/>

0 commit comments

Comments
 (0)