Skip to content

Commit

Permalink
Fixed to use correct formatter. (dotnet#4251)
Browse files Browse the repository at this point in the history
  • Loading branch information
shaggygi authored and scottaddie committed Sep 11, 2017
1 parent b02db6d commit b59fcb6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public void ConfigureServices(IServiceCollection services)
services.AddMvc(options =>
{
options.InputFormatters.Insert(0, new VcardInputFormatter());
options.OutputFormatters.Insert(0, new VcardInputFormatter());
options.OutputFormatters.Insert(0, new VcardOutputFormatter());
});
#endregion

Expand Down

0 comments on commit b59fcb6

Please sign in to comment.