Skip to content

Commit 1df9796

Browse files
committed
Update child dependencies
1 parent c8a92a2 commit 1df9796

File tree

3 files changed

+16
-4
lines changed

3 files changed

+16
-4
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,13 @@ jobs:
2424
check-name: build-and-test
2525
repo-token: ${{ secrets.GITHUB_TOKEN }}
2626
wait-interval: 10
27+
28+
- name: Restore dependencies
29+
run: dotnet restore
2730

31+
- name: Build
32+
run: dotnet build --configuration Release --no-restore
33+
2834
- name: Generate package
2935
run: dotnet pack ./Storage/Storage.csproj --configuration Release
3036

Storage/Storage.csproj

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,15 @@
3838
</PropertyGroup>
3939

4040
<ItemGroup>
41+
<PackageReference Include="coverlet.collector" Version="6.0.2">
42+
<PrivateAssets>all</PrivateAssets>
43+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
44+
</PackageReference>
45+
<PackageReference Include="Microsoft.CodeCoverage" Version="17.9.0" />
46+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
4147
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
42-
<PackageReference Include="MimeMapping" Version="2.0.0" />
43-
<PackageReference Include="supabase-core" Version="0.0.3" />
48+
<PackageReference Include="MimeMapping" Version="3.0.1" />
49+
<PackageReference Include="Supabase.Core" Version="1.0.0" />
4450
</ItemGroup>
4551

4652
<ItemGroup>

StorageTests/StorageTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
10+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
1111
<PackageReference Include="MSTest.TestAdapter" Version="3.1.1" />
1212
<PackageReference Include="MSTest.TestFramework" Version="3.1.1" />
13-
<PackageReference Include="coverlet.collector" Version="6.0.0">
13+
<PackageReference Include="coverlet.collector" Version="6.0.2">
1414
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1515
<PrivateAssets>all</PrivateAssets>
1616
</PackageReference>

0 commit comments

Comments
 (0)