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 BowlingEF.Entities;
using DTOs;
namespace BowlingService.Interfaces
{

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

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

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

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

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

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

Loading…
Cancel
Save