Skip to content

Commit

Permalink
Update to .NET 6 and upgrade package references (#19)
Browse files Browse the repository at this point in the history
Co-authored-by: Sommer Kevin <sommer.k@uhlmann.de>
  • Loading branch information
ITDancer13 and UHL-KS authored Aug 8, 2022
1 parent 1666ebb commit 9c96ae5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/DotNet.Consolidate.Tests/DotNet.Consolidate.Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>

<IsPackable>false</IsPackable>
</PropertyGroup>
Expand All @@ -11,13 +11,13 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.1.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.2.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
8 changes: 4 additions & 4 deletions src/DotNet.Consolidate/DotNet.Consolidate.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,28 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<WarningsAsErrors />

<PackAsTool>true</PackAsTool>
<ToolCommandName>dotnet-consolidate</ToolCommandName>
<VersionPrefix>1.2.2</VersionPrefix>
<VersionPrefix>2.0.0</VersionPrefix>
</PropertyGroup>

<PropertyGroup>
<PackageId>dotnet-consolidate</PackageId>
<Description>.NET core tool that verifies that all NuGet packages in a solution are consolidated</Description>
<Authors>Oleg Shevchenko</Authors>
<Authors>Oleg Shevchenko and Contributors</Authors>
<PackageTags>nuget, consolidate, versions</PackageTags>
<PackageReleaseNotes>https://github.com/olsh/dotnet-consolidate/releases</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/olsh/dotnet-consolidate</PackageProjectUrl>
<license>https://raw.githubusercontent.com/olsh/dotnet-consolidate/master/LICENSE</license>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0" />
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Onion.SolutionParser.Parser.Standard" Version="1.0.0" />
<PackageReference Include="StyleCop.Analyzers" Version="1.1.118">
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit 9c96ae5

Please sign in to comment.