Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/nuget-pack-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,11 @@ jobs:
- name: Build
run: dotnet build -c Release
- name: Pack
run: dotnet pack -c Release -o ./publish
run: |
dotnet pack -c Release -o ./publish ./src/CsToml/CsToml.csproj
dotnet pack -c Release -o ./publish ./src/CsToml.Extensions/CsToml.Extensions.csproj
dotnet pack -c Release -o ./publish ./src/CsToml.Generator/CsToml.Generator.csproj
dotnet pack -c Release -o ./publish ./src/CsToml.Extensions.Configuration/CsToml.Extensions.Configuration.csproj
- uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
with:
name: nuget
Expand Down Expand Up @@ -61,5 +65,4 @@ jobs:
# upload nuget
- run: dotnet nuget push "./nuget/*.nupkg" --skip-duplicate -s https://api.nuget.org/v3/index.json -k "${NUGET_KEY}"
env:

NUGET_KEY: ${{ steps.login.outputs.NUGET_API_KEY }}
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ dotnet publish --configuration Release
### Target Frameworks
- **Main libraries**: .NET 8.0, 9.0, 10.0
- **Source generator**: .NET Standard 2.0 (for Roslyn compatibility)
- **Language version**: C# 13.0
- **Language version**: C# 14.0

## Testing Strategy

Expand Down Expand Up @@ -152,4 +152,4 @@ The source generator operates in several phases:
### Type Parameter Handling
- `TypeParameter` and `NullableStructWithTypeParameter` serialization kinds handle generic constraints
- Generated code includes runtime type checking for generic type parameters
- AOT-compatible patterns avoid reflection where possible
- AOT-compatible patterns avoid reflection where possible
239 changes: 202 additions & 37 deletions README.md

Large diffs are not rendered by default.

Binary file modified img/benchmark_deserialization.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/benchmark_parse.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified img/benchmark_serialization.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion src/NuGet.props
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<RepositoryUrl>$(PackageProjectUrl)</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<VersionPrefix>1.7.5</VersionPrefix>
<VersionPrefix>1.8.0</VersionPrefix>
</PropertyGroup>

<ItemGroup>
Expand Down
Loading