-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathGenHTTP.Modules.DependencyInjection.csproj
More file actions
34 lines (19 loc) · 1.1 KB
/
GenHTTP.Modules.DependencyInjection.csproj
File metadata and controls
34 lines (19 loc) · 1.1 KB
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Enables dependency injection for all framework services.</Description>
<PackageTags>HTTP Webserver C# Module DI Dependency Injection</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\API\GenHTTP.Api.csproj" />
<ProjectReference Include="..\Basics\GenHTTP.Modules.Basics.csproj" />
<ProjectReference Include="..\Controllers\GenHTTP.Modules.Controllers.csproj" />
<ProjectReference Include="..\Conversion\GenHTTP.Modules.Conversion.csproj" />
<ProjectReference Include="..\Functional\GenHTTP.Modules.Functional.csproj" />
<ProjectReference Include="..\Layouting\GenHTTP.Modules.Layouting.csproj" />
<ProjectReference Include="..\Reflection\GenHTTP.Modules.Reflection.csproj" />
<ProjectReference Include="..\Webservices\GenHTTP.Modules.Webservices.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="9.0.10" />
</ItemGroup>
</Project>