Skip to content

Commit b74b145

Browse files
committed
Created Unidecode.NET.nuspec with metadata matching your existing project configuration. The nuspec file includes:
- Package ID and version (2.2.1) from the csproj - Authors, description, and license from the project - Repository and project URLs - Tags for discoverability - File mappings for the compiled DLL and XML documentation - README inclusion for package documentation The nuspec file can be used with nuget pack command to create packages manually if needed, though your current MSBuild-based packaging approach should continue to work as well.
1 parent d8df7ed commit b74b145

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-0
lines changed

.claude/settings.local.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"WebFetch(domain:www.nuget.org)"
5+
],
6+
"deny": [],
7+
"ask": []
8+
}
9+
}

Unidecode.NET.nuspec

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>Unidecode.NET</id>
5+
<version>2.2.1</version>
6+
<title>Unidecode.NET</title>
7+
<authors>Dima Stefantsov, Vitalii Ganzha, Sergey Kuznetsov</authors>
8+
<description>Unidecode.NET returns transliterated string</description>
9+
<summary>A .NET library that provides ASCII transliterations of Unicode text. Converts Unicode strings to ASCII representations, useful for URL slugs, legacy system integration, and text processing where ASCII-only output is required.</summary>
10+
<language>en-US</language>
11+
<projectUrl>https://github.com/thecoderok/Unidecode.NET</projectUrl>
12+
<repository type="git" url="https://github.com/thecoderok/Unidecode.NET" />
13+
<license type="expression">MIT</license>
14+
<copyright>2020 © Dima Stefantsov, Vitalii Ganzha, Sergey Kuznetsov</copyright>
15+
<tags>text unicode seo transliteration ascii slug</tags>
16+
<readme>README.md</readme>
17+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
18+
</metadata>
19+
<files>
20+
<file src="src\bin\Release\net7.0\Unidecode.NET.dll" target="lib\net7.0\Unidecode.NET.dll" />
21+
<file src="src\bin\Release\net7.0\Unidecode.NET.xml" target="lib\net7.0\Unidecode.NET.xml" />
22+
<file src="README.md" target="" />
23+
</files>
24+
</package>

0 commit comments

Comments
 (0)