Skip to content

Commit d41a0cc

Browse files
authored
Merge pull request #8 from dotarj/refactor/contributors-copyright
added contributors to copyright text
2 parents 398c7bb + b463d26 commit d41a0cc

31 files changed

Lines changed: 31 additions & 31 deletions

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2018 Arjen Post
1+
Copyright 2018 Arjen Post and contributors
22

33
Licensed under the Apache License, Version 2.0 (the "License");
44
you may not use this file except in compliance with the License.

NOTICE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) Arjen Post
1+
Copyright (c) Arjen Post and contributors
22

33
Portions of this software were developed by Microsoft Open
44
Technologies, Inc. They are extracted from ASP.NET Web API

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![apache](https://img.shields.io/badge/license-Apache%202-green.svg)](https://raw.githubusercontent.com/dotarj/PartialResponse.AspNetCore.Mvc.Formatters.Json/master/LICENSE)
44
[![nuget](https://img.shields.io/nuget/v/PartialResponse.AspNetCore.Mvc.Formatters.Json.svg)](https://www.nuget.org/packages/PartialResponse.AspNetCore.Mvc.Formatters.Json)
55
[![appveyor](https://ci.appveyor.com/api/projects/status/y8kahoej4avaqwwm?svg=true)](https://ci.appveyor.com/project/dotarj/partialresponse-aspnetcore-mvc-formatters-json)
6-
[![sonarqube](https://sonarcloud.io/api/badges/gate?key=PartialResponse.AspNetCore.Mvc.Formatters.Json)](https://sonarcloud.io/dashboard?id=PartialResponse.AspNetCore.Mvc.Formatters.Json)
6+
[![sonarqube](https://sonarcloud.io/api/project_badges/measure?project=PartialResponse.AspNetCore.Mvc.Formatters.Json&metric=alert_status)](https://sonarcloud.io/dashboard?id=PartialResponse.AspNetCore.Mvc.Formatters.Json)
77
[![codecov](https://codecov.io/gh/dotarj/PartialResponse.AspNetCore.Mvc.Formatters.Json/branch/master/graph/badge.svg)](https://codecov.io/gh/dotarj/PartialResponse.AspNetCore.Mvc.Formatters.Json)
88

99
PartialResponse.AspNetCore.Mvc.Formatters.Json provides JSON partial response (partial resource) support for ASP.NET Core MVC. This package is also [available for ASP.NET Web API](https://github.com/dotarj/PartialResponse/).

samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples/Controllers/ExecutorController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Arjen Post. See LICENSE and NOTICE in the project root for license information.
1+
// Copyright (c) Arjen Post and contributors. See LICENSE and NOTICE in the project root for license information.
22

33
using System.Collections.Generic;
44
using Microsoft.AspNetCore.Mvc;

samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples/Controllers/FormatterController.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Arjen Post. See LICENSE and NOTICE in the project root for license information.
1+
// Copyright (c) Arjen Post and contributors. See LICENSE and NOTICE in the project root for license information.
22

33
using System.Collections.Generic;
44
using Microsoft.AspNetCore.Mvc;

samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Arjen Post. See LICENSE and NOTICE in the project root for license information.
1+
// Copyright (c) Arjen Post and contributors. See LICENSE and NOTICE in the project root for license information.
22

33
using Microsoft.AspNetCore;
44
using Microsoft.AspNetCore.Hosting;

samples/PartialResponse.AspNetCore.Mvc.Formatters.Json.Samples/Startup.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Arjen Post. See LICENSE and NOTICE in the project root for license information.
1+
// Copyright (c) Arjen Post and contributors. See LICENSE and NOTICE in the project root for license information.
22

33
using Microsoft.AspNetCore.Builder;
44
using Microsoft.AspNetCore.Mvc.Formatters;

src/PartialResponse.AspNetCore.Mvc.Formatters.Json/ControllerExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Arjen Post. See LICENSE and NOTICE in the project root for license information.
1+
// Copyright (c) Arjen Post and contributors. See LICENSE and NOTICE in the project root for license information.
22

33
using System;
44
using Newtonsoft.Json;

src/PartialResponse.AspNetCore.Mvc.Formatters.Json/DefaultFieldsParser.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Arjen Post. See LICENSE and NOTICE in the project root for license information.
1+
// Copyright (c) Arjen Post and contributors. See LICENSE and NOTICE in the project root for license information.
22
using System;
33
using Microsoft.AspNetCore.Http;
44
using PartialResponse.Core;

src/PartialResponse.AspNetCore.Mvc.Formatters.Json/DependencyInjection/MvcPartialJsonMvcBuilderExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Arjen Post. See LICENSE and NOTICE in the project root for license information.
1+
// Copyright (c) Arjen Post and contributors. See LICENSE and NOTICE in the project root for license information.
22

33
using System;
44
using Microsoft.AspNetCore.Mvc;

0 commit comments

Comments
 (0)