babole
This commit is contained in:
parent
0e2529594f
commit
c0fa6e2e35
34
.vscode/tasks.json
vendored
34
.vscode/tasks.json
vendored
@ -1,6 +1,36 @@
|
||||
{
|
||||
"version": "2.0.0",
|
||||
"tasks": [
|
||||
{
|
||||
"label": "build",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"build",
|
||||
"${workspaceFolder}/src/InternshipSystem.Api/InternshipSystem.Api.csproj",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary"
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "watch",
|
||||
"command": "dotnet",
|
||||
"type": "process",
|
||||
"args": [
|
||||
"watch",
|
||||
"--project",
|
||||
"${workspaceFolder}/src/InternshipSystem.Api/InternshipSystem.Api.csproj",
|
||||
"run",
|
||||
"/property:GenerateFullPaths=true",
|
||||
"/consoleloggerparameters:NoSummary"
|
||||
],
|
||||
"problemMatcher": "$msCompile"
|
||||
},
|
||||
{
|
||||
"label": "build: api",
|
||||
"type": "docker-build",
|
||||
@ -36,10 +66,6 @@
|
||||
"down: api",
|
||||
"build: api"
|
||||
],
|
||||
"group": {
|
||||
"kind": "build",
|
||||
"isDefault": true
|
||||
},
|
||||
"problemMatcher": []
|
||||
},
|
||||
{
|
||||
|
@ -1,5 +1,5 @@
|
||||
using System.Threading.Tasks;
|
||||
using Internship.Repository;
|
||||
using InternshipSystem.Repository;
|
||||
using Microsoft.AspNetCore.Mvc;
|
||||
|
||||
namespace Internship.Api.Controller
|
||||
|
@ -1,7 +1,6 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Reflection;
|
||||
using Internship.Repository;
|
||||
using InternshipSystem.Repository;
|
||||
using Microsoft.AspNetCore.Builder;
|
||||
using Microsoft.AspNetCore.Hosting;
|
||||
@ -30,7 +29,7 @@ namespace InternshipSystem.Api
|
||||
var xmlPath = Path.Combine(AppContext.BaseDirectory, xmlFile);
|
||||
options.IncludeXmlComments(xmlPath);
|
||||
})
|
||||
.AddSingleton<DatabaseFiller>()
|
||||
.AddScoped<DatabaseFiller>()
|
||||
.AddControllers()
|
||||
;
|
||||
|
||||
|
@ -1,9 +1,8 @@
|
||||
using System.Collections.Generic;
|
||||
using System.Threading.Tasks;
|
||||
using InternshipSystem.Core;
|
||||
using InternshipSystem.Repository;
|
||||
|
||||
namespace Internship.Repository
|
||||
namespace InternshipSystem.Repository
|
||||
{
|
||||
public class DatabaseFiller
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user