Skip to content

Commit

Permalink
nugets
Browse files Browse the repository at this point in the history
  • Loading branch information
dmariogatto committed Oct 18, 2021
1 parent 5b050e7 commit 858d3c4
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ A simple MSBuild task to check your project's dependencies against a _blacklist_

## Installation

Install the [Nuget Package](https://www.nuget.org/packages/Cats.Build.Blacklist) into the project(s) that need a blacklist configured.
Install the [![](https://img.shields.io/nuget/v/Cats.Build.Blacklist.svg)](https://nuget.org/packages/Cats.Build.Blacklist) into the project(s) that need a blacklist configured.

```
Install-Package Cats.Build.Blacklist
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="NuGet.Versioning" Version="5.8.0" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="NuGet.Versioning" Version="5.11.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.8.3" />
<PackageReference Include="MSTest.TestAdapter" Version="2.1.2" />
<PackageReference Include="MSTest.TestFramework" Version="2.1.2" />
<PackageReference Include="coverlet.collector" Version="3.0.0">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Include="MSTest.TestAdapter" Version="2.2.7" />
<PackageReference Include="MSTest.TestFramework" Version="2.2.7" />
<PackageReference Include="coverlet.collector" Version="3.1.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
15 changes: 9 additions & 6 deletions src/Cats.Build.Blacklist/Cats.Build.Blacklist.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@
<Product>$(AssemblyName) ($(TargetFramework))</Product>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<AssemblyFileVersion>1.0.0.0</AssemblyFileVersion>
<Version>1.0.0</Version>
<PackageVersion>1.0.0</PackageVersion>
<Version>1.1.0</Version>
<PackageVersion>1.1.0</PackageVersion>
<Authors>dmariogatto</Authors>
<Owners>dmariogatto</Owners>
<NeutralLanguage>en</NeutralLanguage>
Expand All @@ -32,6 +32,9 @@
<PackageProjectUrl>https://github.com/dmariogatto/msbuild-blacklist-task</PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<DevelopmentDependency>true</DevelopmentDependency>
<PackageReleaseNotes>
- Updated dependencies
</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
Expand All @@ -47,10 +50,10 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Build.Framework" Version="16.8.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="16.8.0" PrivateAssets="All" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" PrivateAssets="All" />
<PackageReference Include="NuGet.Versioning" Version="5.8.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.Build.Framework" Version="16.11.0" PrivateAssets="All" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="16.11.0" PrivateAssets="All" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" PrivateAssets="All" />
<PackageReference Include="NuGet.Versioning" Version="5.11.0" PrivateAssets="All" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 858d3c4

Please sign in to comment.