This repository was archived by the owner on Nov 20, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 5 files changed +23
-5
lines changed Expand file tree Collapse file tree 5 files changed +23
-5
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ public class ConvidadoController : ControllerBase
14
14
15
15
private readonly IParticipanteRepository participanteRepository ;
16
16
17
+ /// <summary>
18
+ /// Construtor
19
+ /// </summary>
20
+ /// <param name="convidadoRepository"></param>
21
+ /// <param name="participanteRepository"></param>
17
22
public ConvidadoController (
18
23
IConvidadoRepository convidadoRepository ,
19
24
IParticipanteRepository participanteRepository )
Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ public class ParticipanteController : ControllerBase
14
14
15
15
private readonly IParticipanteRepository participanteRepository ;
16
16
17
+ /// <summary>
18
+ /// Construtor
19
+ /// </summary>
20
+ /// <param name="convidadoRepository"></param>
21
+ /// <param name="participanteRepository"></param>
17
22
public ParticipanteController (
18
23
IConvidadoRepository convidadoRepository ,
19
24
IParticipanteRepository participanteRepository )
Original file line number Diff line number Diff line change @@ -14,6 +14,11 @@ public class TotalController : ControllerBase
14
14
15
15
private readonly IParticipanteRepository participanteRepository ;
16
16
17
+ /// <summary>
18
+ /// Construtor
19
+ /// </summary>
20
+ /// <param name="convidadoRepository"></param>
21
+ /// <param name="participanteRepository"></param>
17
22
public TotalController (
18
23
IConvidadoRepository convidadoRepository ,
19
24
IParticipanteRepository participanteRepository )
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<TargetFramework >netcoreapp3.1</TargetFramework >
5
+ <GenerateDocumentationFile >true</GenerateDocumentationFile >
5
6
</PropertyGroup >
6
7
7
- <PropertyGroup >
8
- <GenerateDocumentationFile >true</GenerateDocumentationFile >
9
- <NoWarn >$(NoWarn);1591</NoWarn >
10
- <NoWarn >$(NoWarn);8618</NoWarn >
8
+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
9
+ <TreatWarningsAsErrors >True</TreatWarningsAsErrors >
10
+ </PropertyGroup >
11
+
12
+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
13
+ <TreatWarningsAsErrors >True</TreatWarningsAsErrors >
11
14
</PropertyGroup >
12
15
13
16
<ItemGroup >
Original file line number Diff line number Diff line change 12
12
"IIS Express" : {
13
13
"commandName" : " IISExpress" ,
14
14
"launchBrowser" : true ,
15
- "launchUrl" : " swagger " ,
15
+ "launchUrl" : " " ,
16
16
"environmentVariables" : {
17
17
"ASPNETCORE_ENVIRONMENT" : " Development"
18
18
}
You can’t perform that action at this time.
0 commit comments