Releases: abjerner/Skybrud.WebApi.Json
Releases · abjerner/Skybrud.WebApi.Json
Skybrud.WebApi.Json v1.1.0
Changelog
-
Added attribute usage to the
JsonOnlyConfigurationAttribute
class (see b0885d5)
As theJsonOnlyConfigurationAttribute
class only works when added at the class level and not at method level, the class now has anAttributeUsage
attribute which then prevents theJsonOnlyConfigurationAttribute
class from being used on anything but classes. -
Updated
.csproj
file to use SDK format (see 5c68ece)
Shouldn't really change anything regarding the code, but now the.csproj
file is a lot easier to read. -
Added NuGet dependency for
Microsoft.AspNet.WebApi.Core
(see b0885d5, cf48f62 and cb2d31c)
We can no longer rely on<Reference Include="System.Net.Http" />
and<Reference Include="System.Net.Http.Formatting" />
, so we're now using the NuGet package instead.
Skybrud.WebApi.Json v1.0.4
Changelog
- Made some internal and private constructors and properties public (see d434763).
- General code cleanup.