Skip to content

Commit dd2d3a0

Browse files
committed
Package updates, name changes
1 parent 9b05371 commit dd2d3a0

File tree

24 files changed

+90
-93
lines changed

24 files changed

+90
-93
lines changed

src/NetCoreStack.Proxy/DefaultProxyContentStreamProvider.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,7 @@
1-
using Microsoft.AspNetCore.Routing.Template;
2-
using Microsoft.AspNetCore.WebUtilities;
3-
using NetCoreStack.Contracts;
1+
using NetCoreStack.Contracts;
42
using NetCoreStack.Proxy.Extensions;
53
using NetCoreStack.Proxy.Internal;
64
using Newtonsoft.Json;
7-
using System;
85
using System.Collections.Generic;
96
using System.IO;
107
using System.Linq;

src/NetCoreStack.Proxy/Extensions/ServiceCollectionExtensions.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
using NetCoreStack.Contracts;
77
using NetCoreStack.Proxy.Internal;
88
using System;
9-
using System.Collections;
10-
using System.Collections.Generic;
119
using System.Reflection;
1210

1311
namespace NetCoreStack.Proxy

src/NetCoreStack.Proxy/Interfaces/IProxyContentStreamProvider.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
using System;
2-
using System.Net.Http;
1+
using System.Net.Http;
32
using System.Threading.Tasks;
43

54
namespace NetCoreStack.Proxy

src/NetCoreStack.Proxy/NetCoreStack.Proxy.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
</PropertyGroup>
1212

1313
<ItemGroup>
14-
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="1.1.1" />
15-
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.2" />
16-
<PackageReference Include="Microsoft.Extensions.Configuration" Version="1.1.1" />
17-
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="1.1.1" />
18-
<PackageReference Include="NetCoreStack.Contracts" Version="1.0.2" />
14+
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="1.1.2" />
15+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.3" />
16+
<PackageReference Include="Microsoft.Extensions.Configuration" Version="1.1.2" />
17+
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="1.1.2" />
18+
<PackageReference Include="NetCoreStack.Contracts" Version="1.0.4" />
1919
<PackageReference Include="NetCoreStack.DispatchProxyAsync" Version="1.1.0" />
2020
</ItemGroup>
2121

test/NetCoreStack.Api.Hosting/Controllers/AlbumController.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
using NetCoreStack.Mvc.Extensions;
77
using System.Linq;
88
using System.Threading.Tasks;
9-
using System;
109

1110
namespace NetCoreStack.WebClient.Hosting.Controllers
1211
{

test/NetCoreStack.Api.Hosting/NetCoreStack.Api.Hosting.csproj

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@
88
<Folder Include="wwwroot\" />
99
</ItemGroup>
1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.1" />
12-
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="1.1.1" />
13-
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="1.1.1" />
14-
<PackageReference Include="Microsoft.AspNetCore.Http" Version="1.1.1" />
15-
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.2" />
16-
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.1" />
17-
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.1" />
18-
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="1.1.1" />
19-
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="1.1.1" />
20-
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="1.1.1" />
21-
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="1.1.1" />
22-
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.1" />
11+
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.2" />
12+
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="1.1.2" />
13+
<PackageReference Include="Microsoft.AspNetCore.Hosting.Abstractions" Version="1.1.2" />
14+
<PackageReference Include="Microsoft.AspNetCore.Http" Version="1.1.2" />
15+
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="1.1.3" />
16+
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="1.1.2" />
17+
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="1.1.2" />
18+
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="1.1.2" />
19+
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="1.1.2" />
20+
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" Version="1.1.2" />
21+
<PackageReference Include="Microsoft.Extensions.Configuration.EnvironmentVariables" Version="1.1.2" />
22+
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="1.1.2" />
2323
<PackageReference Include="NetCoreStack.Data" Version="1.0.0-preview-211" />
2424
<PackageReference Include="NetCoreStack.Mvc" Version="1.0.0-preview-211" />
2525
<PackageReference Include="Swashbuckle" Version="6.0.0-beta902" />

test/NetCoreStack.Api.Hosting/SqlDataInitializer.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
using System;
55
using System.Collections.Generic;
66
using System.Linq;
7-
using System.Threading.Tasks;
87

98
namespace NetCoreStack.Api.Hosting
109
{

test/NetCoreStack.Domain.Contracts/BsonModels/AlbumBson.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
using NetCoreStack.Contracts;
2+
using NetCoreStack.Data.Contracts;
23
using System.ComponentModel.DataAnnotations;
34

45
namespace NetCoreStack.Domain.Contracts
56
{
6-
[BsonCollectionName("Albums")]
7+
[CollectionName("Albums")]
78
public class AlbumBson : EntityIdentityBson
89
{
910
[Required]

test/NetCoreStack.Domain.Contracts/BsonModels/ArtistBson.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
using NetCoreStack.Contracts;
2+
using NetCoreStack.Data.Contracts;
23
using System.ComponentModel.DataAnnotations;
34

45
namespace NetCoreStack.Domain.Contracts
56
{
6-
[BsonCollectionName("Artists")]
7+
[CollectionName("Artists")]
78
public class ArtistBson : EntityIdentityBson
89
{
910
[Required]

test/NetCoreStack.Domain.Contracts/BsonModels/Customer.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
using MongoDB.Bson.Serialization.Attributes;
22
using NetCoreStack.Contracts;
3+
using NetCoreStack.Data.Contracts;
34
using System.Collections.Generic;
45

56
namespace NetCoreStack.Domain.Contracts.BsonModels
67
{
7-
[BsonCollectionName("Customers")]
8+
[CollectionName("Customers")]
89
public class Customer : EntityIdentityBson
910
{
1011
[BsonElement("fname")]

0 commit comments

Comments
 (0)