- Update to Netstandard1.6
NB: The serialization format of the cassette file has changed slightly. Where headers used to be serialized like this:
"responseHeaders": [
{
"Connection": "keep-alive"
},
{
"Vary": "Origin"
}
],
"contentHeaders": [
{
"Content-Length": "64"
},
{
"Content-Type": "application/json; charset=utf-8"
},
]
They are now serialized like this:
"responseHeaders": {
"Connection": "keep-alive",
"Vary": "Origin"
},
"contentHeaders": {
"Content-Length": "64",
"Content-Type": "application/json; charset=utf-8"
},
Existing cassette files will need to be re-recorded, or edited to match the new format.
- Fix for #1 - Fix issue with ContentType header when replaying request
- Initial version