Skip to content

Commit 9d176be

Browse files
close #222 - fixed symbol publishing (#232)
1 parent 2bc0641 commit 9d176be

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

src/common.props

+13-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
<Project>
22
<PropertyGroup>
3-
<Copyright>Copyright © 2014-2019 Akka.NET Team</Copyright>
3+
<Copyright>Copyright © 2014-2020 Akka.NET Team</Copyright>
44
<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&lt;Config&gt;` 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>
716
<PackageIconUrl>http://getakka.net/images/akkalogo.png</PackageIconUrl>
817
<PackageProjectUrl>https://github.com/akkadotnet/HOCON</PackageProjectUrl>
918
<PackageLicenseUrl>https://github.com/akkadotnet/HOCON/blob/master/LICENSE</PackageLicenseUrl>
@@ -26,6 +35,7 @@
2635
<EmbedUntrackedSources>true</EmbedUntrackedSources>
2736
<!-- Optional: Build symbol package (.snupkg) to distribute the PDB containing Source Link -->
2837
<IncludeSymbols>true</IncludeSymbols>
38+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2939
</PropertyGroup>
3040
<ItemGroup>
3141
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />

0 commit comments

Comments
 (0)