-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathGenHTTP.Modules.DependencyInjection.csproj
More file actions
39 lines (23 loc) · 1.27 KB
/
GenHTTP.Modules.DependencyInjection.csproj
File metadata and controls
39 lines (23 loc) · 1.27 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
35
36
37
38
39
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Enables dependency injection for all framework services.</Description>
<PackageTags>GenHTTP HTTP Webserver C# Module DI Dependency Injection</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\API\GenHTTP.Api.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" />
<ProjectReference Include="..\Websockets\GenHTTP.Modules.Websockets.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.5" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
</Project>