Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bjorkstromm committed Mar 12, 2023
1 parent 738a032 commit 92edbd8
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion global.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"sdk": {
"version": "6.0.100",
"version": "7.0.201",
"rollForward": "latestPatch",
"allowPrerelease": false
}
Expand Down
12 changes: 6 additions & 6 deletions src/Depends.Core/Depends.Core.csproj
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<IsPackable>false</IsPackable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Buildalyzer" Version="3.2.3" />
<PackageReference Include="MinVer" Version="2.5.0">
<PackageReference Include="Buildalyzer" Version="5.0.0" />
<PackageReference Include="MinVer" Version="4.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="NuGet.ProjectModel" Version="5.11.0" />
<PackageReference Include="NuGet.Resolver" Version="5.11.0" />
<PackageReference Include="NuGet.ProjectModel" Version="6.5.0" />
<PackageReference Include="NuGet.Resolver" Version="6.5.0" />

<!--
Explicitly disable warning for implicit dependency as done in the parent library (Buildalyzer) here:
https://github.com/daveaglick/Buildalyzer/blob/e30d44755ad17e8abf3efb53acc4a5d4f5a77ea7/src/Buildalyzer/Buildalyzer.csproj#L22-L24 -->
<PackageReference Include="Microsoft.Build" Version="16.10.0">
<PackageReference Include="Microsoft.Build" Version="17.3.2">
<NoWarn>NU1701</NoWarn>
</PackageReference>
</ItemGroup>
Expand Down
10 changes: 5 additions & 5 deletions src/Depends/Depends.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<ToolCommandName>dotnet-depends</ToolCommandName>
<PackAsTool>True</PackAsTool>
<OutputType>Exe</OutputType>
Expand All @@ -16,10 +16,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="3.1.8" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="3.0.0" />
<PackageReference Include="Terminal.Gui" Version="1.3.1" />
<PackageReference Include="MinVer" Version="2.3.1">
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="7.0.0" />
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.0.2" />
<PackageReference Include="Terminal.Gui" Version="1.9.0" />
<PackageReference Include="MinVer" Version="4.3.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
Expand Down

0 comments on commit 92edbd8

Please sign in to comment.