Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit353671b

Browse files
committed
Add .net 8 support. Update README.
1 parent00c0419 commit353671b

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

‎Directory.Build.props‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
</PackageReference>
88
</ItemGroup>
99
<PropertyGroup>
10-
<TargetFramework>net6.0</TargetFramework>
10+
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
1111
<LangVersion>latest</LangVersion>
1212
<Nullable>enable</Nullable>
1313
</PropertyGroup>

‎README.md‎

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
[![Nuget](https://img.shields.io/nuget/v/glob.svg)](https://www.nuget.org/packages/Glob/)
88

99

10-
A C# Glob library for .NET and .NET Core.
10+
A C# Glob library for .NET.
1111

1212
##What is a glob?
1313

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

65-
##Usage
65+
##Getting Started
66+
67+
###Installing from NuGet
68+
69+
```bash
70+
dotnet add package Glob
71+
```
72+
73+
###Setup
74+
75+
To use Glob, you need to include the namespace:
76+
77+
```csharp
78+
usingGlobExpressions;
79+
```
6680

6781
###Example
6882

‎src/Glob/Glob.csproj‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
<AssemblyName>Glob</AssemblyName>
88
<PackageId>Glob</PackageId>
99
<PackageTags>C#;glob;minimatch</PackageTags>
10-
<Description>A C# Glob library for .NET and .NET Core.</Description>
10+
<Description>A C# Glob library for .NET.</Description>
1111
<PackageReleaseNotes>https://github.com/kthompson/glob/blob/main/ChangeLog.md</PackageReleaseNotes>
1212
<PackageProjectUrl>https://github.com/kthompson/glob/</PackageProjectUrl>
1313
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1414
<PackageLicense>
1515
The MIT License (MIT)
1616

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

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

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp