Skip to content

Commit 18afd54

Browse files
authored
Merge pull request #3 from binek86/chore/dotnet10_target
added dotnet10.0 target
2 parents 04bc790 + 3a02212 commit 18afd54

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

CLAUDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Proto field comments (`[GrpcGuid]`, `[Decimal]`, `[DateTime]`, `[DateTimeOffset]
1111
```
1212
Source/
1313
Porticle.Grpc.sln
14-
Porticle.Grpc.TypeMapper/ # Main library (NuGet package, net8.0 + net9.0)
14+
Porticle.Grpc.TypeMapper/ # Main library (NuGet package, net8.0, net9.0, net10.0)
1515
Porticle.Grpc.UnitTests/ # MSTest unit tests (net9.0)
1616
Porticle.Grpc.Test/ # Integration test with proto files
1717
Porticle.Grpc.TestWithoutProto/ # Package consumption test without proto compilation
@@ -44,7 +44,7 @@ Use the **Test** solution configuration (`-c Test`) when running tests. This avo
4444
## Coding Conventions
4545

4646
- All code comments (including XML doc comments) must be written in **English**.
47-
- Target frameworks: net8.0 and net9.0.
47+
- Target frameworks: net8.0, net9.0 and net10.0.
4848
- Nullable reference types are enabled (`<Nullable>enable</Nullable>`).
4949
- Implicit usings are enabled.
5050
- Debug builds treat warnings as errors.

Source/Porticle.Grpc.TypeMapper/Porticle.Grpc.TypeMapper.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<DevelopmentDependency>true</DevelopmentDependency>
1818
<Version>1.4.113</Version>
1919
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
20-
<TargetFrameworks>net9.0;net8.0</TargetFrameworks>
20+
<TargetFrameworks>net10.0;net9.0;net8.0</TargetFrameworks>
2121
<PackageReadmeFile>readme.md</PackageReadmeFile>
2222
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
2323
<Configurations>Debug;Release;Test</Configurations>

0 commit comments

Comments
 (0)