File tree Expand file tree Collapse file tree
ProjectTemplates/AspNetCore.WebApi/ReferenceProject/ReferenceProject Expand file tree Collapse file tree File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 33 /// <summary>
44 /// DTO for reading product (-s)
55 /// </summary>
6+
67 public class Product
78 {
89 /// <summary>
@@ -13,6 +14,7 @@ public class Product
1314 /// <summary>
1415 /// Product name
1516 /// </summary>
17+ /// <example>lime</example>
1618 public string Name { get ; set ; }
1719 }
1820}
Original file line number Diff line number Diff line change 22
33 <PropertyGroup >
44 <TargetFramework >netcoreapp2.1</TargetFramework >
5+ <LangVersion >latest</LangVersion >
56 </PropertyGroup >
67
78 <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|AnyCPU'" >
89 <DefineConstants >DEBUG;TRACE</DefineConstants >
910 <GenerateDocumentationFile >true</GenerateDocumentationFile >
10- <WarningsAsErrors >NU1605 </WarningsAsErrors >
11+ <WarningsAsErrors ></WarningsAsErrors >
1112 <NoWarn >1701;1702;1591</NoWarn >
13+ <TreatWarningsAsErrors >true</TreatWarningsAsErrors >
14+ </PropertyGroup >
15+
16+ <PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Release|AnyCPU'" >
17+ <NoWarn >1701;1702;1591</NoWarn >
18+ <DefineConstants />
19+ <DocumentationFile >obj\Release\netcoreapp2.1\ReferenceProject.xml</DocumentationFile >
20+ <TreatWarningsAsErrors >true</TreatWarningsAsErrors >
21+ <WarningsAsErrors />
1222 </PropertyGroup >
1323
1424 <ItemGroup >
You can’t perform that action at this time.
0 commit comments