Skip to content

Commit

Permalink
Add .net 8 support. Update README.
Browse files Browse the repository at this point in the history
  • Loading branch information
kthompson committed Feb 15, 2024
1 parent 00c0419 commit 1ae9f13
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PackageReference>
</ItemGroup>
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<Nullable>enable</Nullable>
</PropertyGroup>
Expand Down
18 changes: 16 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[![Nuget](https://img.shields.io/nuget/v/glob.svg)](https://www.nuget.org/packages/Glob/)


A C# Glob library for .NET and .NET Core.
A C# Glob library for .NET.

## What is a glob?

Expand Down Expand Up @@ -62,7 +62,21 @@ https://kthompson.github.io/glob/
* Simple text string matching support
* File system matching APIs

## Usage
## Getting Started

### Installing from NuGet

```bash
dotnet add package Glob
```

### Setup

To use Glob, you need to include the namespace:

```csharp
using GlobExpressions;
```

### Example

Expand Down
4 changes: 2 additions & 2 deletions src/Glob/Glob.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
<AssemblyName>Glob</AssemblyName>
<PackageId>Glob</PackageId>
<PackageTags>C#;glob;minimatch</PackageTags>
<Description>A C# Glob library for .NET and .NET Core.</Description>
<Description>A C# Glob library for .NET.</Description>
<PackageReleaseNotes>https://github.com/kthompson/glob/blob/main/ChangeLog.md</PackageReleaseNotes>
<PackageProjectUrl>https://github.com/kthompson/glob/</PackageProjectUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageLicense>
The MIT License (MIT)

Copyright (c) 2013-2023 Kevin Thompson and Glob contributors
Copyright (c) 2013-2024 Kevin Thompson and Glob contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down

0 comments on commit 1ae9f13

Please sign in to comment.