Skip to content

Commit d5c41cf

Browse files
committed
rename example
1 parent d7d7320 commit d5c41cf

File tree

9 files changed

+7
-7
lines changed

9 files changed

+7
-7
lines changed

JsonApiDotNetCore.MongoDb.sln

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ VisualStudioVersion = 15.0.26124.0
55
MinimumVisualStudioVersion = 15.0.26124.0
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{7E29AA10-F938-4CF8-9CAB-7ACD2D6DC784}"
77
EndProject
8-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Example", "src\Example\Example.csproj", "{600A3E66-E63F-427D-A991-4CD2067041F9}"
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JsonApiDotNetCore.MongoDb.GettingStarted", "src\JsonApiDotNetCore.MongoDb.GettingStarted\JsonApiDotNetCore.MongoDb.GettingStarted.csproj", "{600A3E66-E63F-427D-A991-4CD2067041F9}"
99
EndProject
1010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JsonApiDotNetCore.MongoDb", "src\JsonApiDotNetCore.MongoDb\JsonApiDotNetCore.MongoDb.csproj", "{FD312677-2A62-4B8F-A965-879B059F1755}"
1111
EndProject

src/Example/Controllers/BooksController.cs renamed to src/JsonApiDotNetCore.MongoDb.GettingStarted/Controllers/BooksController.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
using Example.Models;
21
using JsonApiDotNetCore.Configuration;
32
using JsonApiDotNetCore.Controllers;
3+
using JsonApiDotNetCore.MongoDb.GettingStarted.Models;
44
using JsonApiDotNetCore.Services;
55
using Microsoft.Extensions.Logging;
66

7-
namespace Example.Controllers
7+
namespace JsonApiDotNetCore.MongoDb.GettingStarted.Controllers
88
{
99
public sealed class BooksController : JsonApiController<Book, string>
1010
{

src/Example/Models/Book.cs renamed to src/JsonApiDotNetCore.MongoDb.GettingStarted/Models/Book.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
using MongoDB.Bson;
44
using MongoDB.Bson.Serialization.Attributes;
55

6-
namespace Example.Models
6+
namespace JsonApiDotNetCore.MongoDb.GettingStarted.Models
77
{
88
public sealed class Book : IIdentifiable<string>
99
{

src/Example/Program.cs renamed to src/JsonApiDotNetCore.MongoDb.GettingStarted/Program.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using Microsoft.AspNetCore.Hosting;
22
using Microsoft.Extensions.Hosting;
33

4-
namespace Example
4+
namespace JsonApiDotNetCore.MongoDb.GettingStarted
55
{
66
public class Program
77
{

src/Example/Startup.cs renamed to src/JsonApiDotNetCore.MongoDb.GettingStarted/Startup.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
using Example.Models;
21
using JsonApiDotNetCore.Configuration;
32
using JsonApiDotNetCore.MongoDb;
3+
using JsonApiDotNetCore.MongoDb.GettingStarted.Models;
44
using Microsoft.AspNetCore.Builder;
55
using Microsoft.Extensions.Configuration;
66
using Microsoft.Extensions.DependencyInjection;
77
using MongoDB.Driver;
88
using Newtonsoft.Json;
99

10-
namespace Example
10+
namespace JsonApiDotNetCore.MongoDb.GettingStarted
1111
{
1212
public sealed class Startup
1313
{

0 commit comments

Comments
 (0)