Skip to content

Commit

Permalink
Fix copying of icu.net.dll.config file in nuget package
Browse files Browse the repository at this point in the history
It seems that the .props/.targets files get only included if the
XML file specifies the namespace.
  • Loading branch information
ermshiperete committed Jul 8, 2022
1 parent 0d154cc commit a2d4a68
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Fixed

- Fix bug in `UnicodeSet.ToCharacters()`with upper Unicode planes (LT-21010)
- Fix bug in `UnicodeSet.ToCharacters()` with upper Unicode planes (LT-21010)
- Fix copying of `icu.net.dll.config` file in nuget package

## [2.8.0] - 2022-06-24

Expand Down
2 changes: 1 addition & 1 deletion source/icu.net/icu.net.props
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ItemGroup>
<ConfigFiles Include="$(MSBuildThisFileDirectory)../contentFiles/any/any/icu.net.dll.config" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion source/icu.net/icu.net.targets
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Target Name="CopyConfigFiles" BeforeTargets="Build" Condition="!$(TargetFramework.StartsWith('netstandard'))">
<Copy SourceFiles="@(ConfigFiles)" DestinationFolder="$(OutputPath)" />
</Target>
Expand Down

0 comments on commit a2d4a68

Please sign in to comment.