Skip to content

Commit

Permalink
Fix setting IsTrimmable on net5.0 build
Browse files Browse the repository at this point in the history
  • Loading branch information
hwoodiwiss committed Feb 3, 2024
1 parent a50f65c commit aac3286
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Changed

- Added `DynamicallyAccessedMembers` annotation to `RequestInformation.Configure`.
- Fixes `IsTrimmable` property on the project.

## [1.7.8] - 2024-02-02

Expand Down
2 changes: 1 addition & 1 deletion src/Microsoft.Kiota.Abstractions.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<PackageReadmeFile>README.md</PackageReadmeFile>
<NoWarn>$(NoWarn);NU5048;NETSDK1138</NoWarn>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFrameworkVersion)' == 'net5.0'">
<PropertyGroup Condition="'$(TargetFramework)' == 'net5.0'">
<IsTrimmable>true</IsTrimmable>
</PropertyGroup>

Expand Down

0 comments on commit aac3286

Please sign in to comment.