-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathWeb.ControllerApi.Template.csproj
45 lines (39 loc) · 2.38 KB
/
Web.ControllerApi.Template.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>true</IsPackable>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Title>Web.ControllerApi.Template</Title>
<Authors>Matthew Oduamafu</Authors>
<Description>Web.ControllerApi.Template is an enhanced ASP.NET Core API template designed for rapid development. It extends standard templates with pre-configured services, ApplicationDbContext, custom API responses, error handling, and more, offering a robust starting point for controller-centric API projects.</Description>
<RepositoryUrl>/~https://github.com/Matthew-Oduamafu/Web.ControllerApi.Template</RepositoryUrl>
<RepositoryType>Public</RepositoryType>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
<DocumentationFile>bin\Debug\net7.0\Web.ControllerApi.Template.xml</DocumentationFile>
<NoWarn>1591</NoWarn>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<DocumentationFile>bin\Release\net7.0\Web.ControllerApi.Template.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Mapster" Version="7.4.0"/>
<PackageReference Include="Mapster.Core" Version="1.2.1"/>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning" Version="5.1.0"/>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer" Version="5.1.0"/>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.11"/>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.11"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.11">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.11"/>
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0"/>
<PackageReference Include="Swashbuckle.AspNetCore.Annotations" Version="6.5.0"/>
</ItemGroup>
<ItemGroup>
<Folder Include="CustomAttributes\"/>
</ItemGroup>
</Project>