Skip to content

Commit

Permalink
Upgrade packages, and fix sln files.
Browse files Browse the repository at this point in the history
  • Loading branch information
IEvangelist committed Apr 30, 2024
1 parent 5108c52 commit f7a7174
Show file tree
Hide file tree
Showing 7 changed files with 42 additions and 7 deletions.
10 changes: 5 additions & 5 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@
<GlobalPackageReference Include="MinVer" Version="5.0.0" PrivateAssets="all" IncludeAssets="runtime;build;native;contentfiles;analyzers" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageVersion Include="System.Linq.Async" Version="6.0.1" />
<PackageVersion Include="xunit" Version="2.7.0" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.5.7" PrivateAssets="all" />
<PackageVersion Include="xunit" Version="2.8.0" />
<PackageVersion Include="xunit.runner.visualstudio" Version="2.8.0" PrivateAssets="all" />
<PackageVersion Include="coverlet.collector" Version="6.0.2" PrivateAssets="all" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.1" />
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Http" Version="8.0.0" />
<PackageVersion Include="Microsoft.Extensions.Http.Resilience" Version="8.3.0" />
<PackageVersion Include="GitHub.Octokit.SDK" Version="0.0.11" />
<PackageVersion Include="Microsoft.Extensions.Http.Resilience" Version="8.4.0" />
<PackageVersion Include="GitHub.Octokit.SDK" Version="0.0.14" />
<PackageVersion Include="Pathological.Globbing" Version="8.0.1" />
</ItemGroup>
</Project>
</Project>
2 changes: 1 addition & 1 deletion dotnet-github-actions-sdk.sln
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
global.json = global.json
LICENSE = LICENSE
PACKAGES.md = PACKAGES.md
.github\workflows\publish-nuget.yml = .github\workflows\publish-nuget.yml
.github\workflows\publish.yml = .github\workflows\publish.yml
README.md = README.md
EndProjectSection
EndProject
Expand Down
7 changes: 7 additions & 0 deletions tests/Actions.Core.Tests/Actions.Core.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,11 @@
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
<ProjectReference Include="..\..\src\Actions.Core\Actions.Core.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="xunit.runner.visualstudio">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>
7 changes: 7 additions & 0 deletions tests/Actions.Glob.Tests/Actions.Glob.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,11 @@
<ItemGroup>
<None Include="$(ProjectDir)parent\**" CopyToOutputDirectory="Always" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="xunit.runner.visualstudio">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,11 @@
<ItemGroup>
<None Include="$(ProjectDir)parent\**" CopyToOutputDirectory="Always" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="xunit.runner.visualstudio">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>
9 changes: 8 additions & 1 deletion tests/Actions.IO.Tests/Actions.IO.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>$(DefaultTargetFrameworks)</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\src\Actions.IO\Actions.IO.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="xunit.runner.visualstudio">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>
7 changes: 7 additions & 0 deletions tests/Actions.Octokit.Tests/Actions.Octokit.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,11 @@
<ItemGroup>
<ProjectReference Include="..\..\src\Actions.Octokit\Actions.Octokit.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Update="xunit.runner.visualstudio">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
</Project>

0 comments on commit f7a7174

Please sign in to comment.