GO
continuous-integration/drone/push Build is failing Details

pull/7/head
Victor Perez NGOUNOU 2 years ago
parent ca2856fa2a
commit 2f31c1226e

@ -1,5 +1,6 @@
using System; using System;
using BowlingEF.Entities; using BowlingEF.Entities;
using DTOs;
namespace BowlingService.Interfaces namespace BowlingService.Interfaces
{ {

@ -5,6 +5,7 @@ using BowlingEF.Entities;
using BowlingLib.Model; using BowlingLib.Model;
using BowlingRepository; using BowlingRepository;
using BowlingRepository.Interface; using BowlingRepository.Interface;
using DTOs;
using Microsoft.EntityFrameworkCore; using Microsoft.EntityFrameworkCore;
namespace BowlingService.Interfaces namespace BowlingService.Interfaces

@ -1,5 +1,6 @@
using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema; using System.ComponentModel.DataAnnotations.Schema;
using DTOs;
namespace BowlingEF.Entities namespace BowlingEF.Entities
{ {

@ -5,6 +5,7 @@ using System.ComponentModel.DataAnnotations.Schema;
using System.Linq; using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
using BowlingEF.Entities;
namespace DTOs namespace DTOs
{ {

@ -1,4 +1,4 @@
{ {
"iisSettings": { "iisSettings": {
"windowsAuthentication": false, "windowsAuthentication": false,
"anonymousAuthentication": true, "anonymousAuthentication": true,
@ -10,7 +10,6 @@
"profiles": { "profiles": {
"GraphQL_Project": { "GraphQL_Project": {
"commandName": "Project", "commandName": "Project",
"dotnetRunMessages": true,
"launchBrowser": true, "launchBrowser": true,
"applicationUrl": "https://localhost:7197;http://localhost:5234", "applicationUrl": "https://localhost:7197;http://localhost:5234",
"environmentVariables": { "environmentVariables": {
@ -25,4 +24,4 @@
} }
} }
} }
} }

@ -6,6 +6,8 @@
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<IsPackable>false</IsPackable> <IsPackable>false</IsPackable>
<LangVersion>11</LangVersion>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

@ -50,7 +50,7 @@ public class TestController
{ {
var testItems = new List<JoueurDTO>(); var testItems = new List<JoueurDTO>();
testItems.Add(new JoueurDTO {Pseudo = "Item1" }); testItems.Add(new JoueurDTO { Pseudo = "Item1" });
testItems.Add(new JoueurDTO { Pseudo = "Item2" }); testItems.Add(new JoueurDTO { Pseudo = "Item2" });
return testItems; return testItems;
} }

Loading…
Cancel
Save