|
1 | 1 | <Project>
|
2 | 2 | <PropertyGroup>
|
3 |
| - <Copyright>Copyright © 2014-2019 Akka.NET Team</Copyright> |
| 3 | + <Copyright>Copyright © 2014-2020 Akka.NET Team</Copyright> |
4 | 4 | <Authors>Akka.NET Team</Authors>
|
5 |
| - <VersionPrefix>1.3.4</VersionPrefix> |
6 |
| - <PackageReleaseNotes>Placeholder for nightlies**</PackageReleaseNotes> |
| 5 | + <VersionPrefix>2.0.0</VersionPrefix> |
| 6 | + <PackageReleaseNotes>[Add JSON serialization by implementing `ISerializable`.](https://github.com/akkadotnet/HOCON/pull/214) |
| 7 | +[Resolve `Config` containing a single empty object as an empty `Config`.](https://github.com/akkadotnet/HOCON/pull/214) |
| 8 | +[Refactor `Hocon.Parser` class to `Hocon.HoconParser` for clarity.](https://github.com/akkadotnet/HOCON/pull/215) |
| 9 | +[Add `IEquitable<Config>` interface implementation to `Config` class.](https://github.com/akkadotnet/HOCON/pull/218) |
| 10 | +[Change `GetString()`, `GetStringList()`, `GetInt()`, and `GetDouble()` throws on failure instead of returning a default value to conform to Hocon spec.](https://github.com/akkadotnet/HOCON/pull/218) |
| 11 | +[Add `TryGet[DataType]()` functions to all getters to eliminate as much Exception throwing as possible to improve performance.](https://github.com/akkadotnet/HOCON/pull/218) |
| 12 | +[Remove as much wrapping functions as possible to improve performance.](https://github.com/akkadotnet/HOCON/pull/218) |
| 13 | +[Move `ConfigurationException` from `Akka.Configuration` to `Hocon`](https://github.com/akkadotnet/HOCON/pull/218) |
| 14 | +[Fix `Config.WithFallback()` with hocon files containing substitution failed to merge the fallbacks correctly..](https://github.com/akkadotnet/HOCON/pull/218) |
| 15 | +[Hocon is now compatible with Hyperion serializer.](https://github.com/akkadotnet/HOCON/pull/218)</PackageReleaseNotes> |
7 | 16 | <PackageIconUrl>http://getakka.net/images/akkalogo.png</PackageIconUrl>
|
8 | 17 | <PackageProjectUrl>https://github.com/akkadotnet/HOCON</PackageProjectUrl>
|
9 | 18 | <PackageLicenseUrl>https://github.com/akkadotnet/HOCON/blob/master/LICENSE</PackageLicenseUrl>
|
|
26 | 35 | <EmbedUntrackedSources>true</EmbedUntrackedSources>
|
27 | 36 | <!-- Optional: Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
|
28 | 37 | <IncludeSymbols>true</IncludeSymbols>
|
| 38 | + <SymbolPackageFormat>snupkg</SymbolPackageFormat> |
29 | 39 | </PropertyGroup>
|
30 | 40 | <ItemGroup>
|
31 | 41 | <PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
|
|
0 commit comments