Skip to content

Commit

Permalink
v1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
billpratt committed Feb 29, 2024
1 parent 1065bca commit 51fc5ba
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -286,3 +286,5 @@ __pycache__/
*.btm.cs
*.odx.cs
*.xsd.cs

.DS_Store
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## [v1.0.1]
Support .NET 6, 7 and 8.

## [v1.0.0]
Bump to v1 with the GA release of .NET Core 2.1

Expand Down
14 changes: 10 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,17 @@ Search for Nuget packages using the .NET Core CLI.

## Installation

### .NET Core 2.1 & higher
```
Download and install the one of the currently supported [.NET SDKs](https://www.microsoft.com/net/download). Once installed, run the following command:

```bash
dotnet tool install --global dotnet-search
```

If you already have a previous version of **dotnet-search** installed, you can upgrade to the latest version using the following command:

```bash
dotnet tool update --global dotnet-search
```
## Usage

### Help
Expand Down Expand Up @@ -143,6 +150,5 @@ dotnet tool uninstall -g dotnet-search

## Useful Links

* [.NET Core 2.1 Global Tools Annoucement](https://blogs.msdn.microsoft.com/dotnet/2018/02/27/announcing-net-core-2-1-preview-1/#global-tools)
* [.NET Core Global Tools Sample](https://github.com/dotnet/core/blob/master/samples/dotnetsay/README.md)
* [How to manage .NET tools](https://learn.microsoft.com/en-us/dotnet/core/tools/global-tools)
* [.NET Core Global Tools and Gotchas](https://www.natemcmaster.com/blog/2018/02/02/dotnet-global-tool/)
17 changes: 12 additions & 5 deletions src/DotNetSearch/DotNetSearch.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,23 +5,30 @@
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
<IsPackable>true</IsPackable>
<PackAsTool>true</PackAsTool>
<ToolCommandName>dotnet-search</ToolCommandName>
<AssemblyName>dotnet-search</AssemblyName>
<Authors>Bill Pratt</Authors>
<Description>Search for Nuget packages using the .NET Core CLI.

Example: dotnet search json.net</Description>

<PreserveCompilationContext>true</PreserveCompilationContext>
<ServerGarbageCollection>true</ServerGarbageCollection>
<DebugType>portable</DebugType>
<PackageLicenseUrl>https://github.com/billpratt/dotnet-search/blob/master/LICENSE</PackageLicenseUrl>
<PackageId>dotnet-search</PackageId>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/billpratt/dotnet-search</PackageProjectUrl>
<RepositoryUrl>https://github.com/billpratt/dotnet-search</RepositoryUrl>
<PackageTags>dotnet, search</PackageTags>
<PackageVersion>1.0.1</PackageVersion>
<Version>1.0.1</Version>
<Authors>Bill Pratt</Authors>
<Company />
<Product />
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/billpratt/dotnet-search</RepositoryUrl>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>

<ItemGroup>
<PackageReference Include="McMaster.Extensions.CommandLineUtils" Version="4.1.0" />
Expand Down

0 comments on commit 51fc5ba

Please sign in to comment.