Date | 2021-10-02 (1,140 days ago) |
---|---|
Downloads | 65K downloads |
NuGet | View on NuGet |
GitHub | View on GitHub |
Target Frameworks | .NET 4.5 |
#changelog
">ChangelogAdded attribute usage to the JsonOnlyConfigurationAttribute
class (see b0885d5
)
As the JsonOnlyConfigurationAttribute
class only works when added at the class level and not at method level, the class now has an AttributeUsage
attribute which then prevents the JsonOnlyConfigurationAttribute
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.