Skip to content
This repository has been archived by the owner on Feb 6, 2025. It is now read-only.

Commit

Permalink
Fixed storage service references #16
Browse files Browse the repository at this point in the history
  • Loading branch information
spetz committed Sep 29, 2016
1 parent ea8c71e commit a669e50
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ protected override void ConfigureApplicationContainer(ILifetimeScope container)
builder.RegisterType<UserRepository>().As<IUserRepository>();
builder.RegisterType<ServiceClient>().As<IServiceClient>();
builder.RegisterType<ProviderClient>().As<IProviderClient>();
builder.RegisterType<UserProvider>().As<IUserProvider>();
});
LifeTimeScope = container;
}
Expand Down
22 changes: 16 additions & 6 deletions src/Services/Coolector.Services.Storage/project.json
Original file line number Diff line number Diff line change
@@ -1,26 +1,36 @@
{
"title": "Coolector.Services.Storage",
"version": "1.0.0-*",
"buildOptions": {
"emitEntryPoint": true
},

"dependencies": {
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.0"
},
"Autofac": "4.1.0",
"AutoMapper": "5.1.1",
"Coolector.Services": "1.0.0-*",
"Nancy": "2.0.0-barneyrubble",
"NLog.Extensions.Logging": "1.0.0-*",
"MongoDB.Driver": "2.3.0-rc1",
"Microsoft.AspNetCore.Hosting": "1.0.0",
"Microsoft.AspNetCore.Owin": "1.0.0",
"Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
"Microsoft.NETCore.App": {
"type": "platform",
"version": "1.0.1"
},
"Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0",
"Microsoft.Extensions.Configuration.FileExtensions": "1.0.0",
"Microsoft.Extensions.Configuration.Json": "1.0.0",
"RawRabbit": "1.10.0",
"RawRabbit.vNext": "1.10.0"
},

"frameworks": {
"netcoreapp1.0": {
"imports": "dnxcore50"
"imports": [
"dotnet5.6",
"dnxcore50"
]
}
}
}

0 comments on commit a669e50

Please sign in to comment.