-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathGenHTTP.Modules.Reflection.csproj
More file actions
36 lines (24 loc) · 1.07 KB
/
GenHTTP.Modules.Reflection.csproj
File metadata and controls
36 lines (24 loc) · 1.07 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Allows to add reflection-based providers</Description>
<PackageTags>GenHTTP HTTP Webserver C# Module Reflection</PackageTags>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Authors>Andreas Nägeli, Tanzim Hossain Romel</Authors>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\API\GenHTTP.Api.csproj" />
<ProjectReference Include="..\IO\GenHTTP.Modules.IO.csproj" />
<ProjectReference Include="..\Conversion\GenHTTP.Modules.Conversion.csproj" />
<ProjectReference Include="..\Pages\GenHTTP.Modules.Pages.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="5.3.0" />
</ItemGroup>
<ItemGroup>
<None Remove="Resources\CodeGenerationError.html" />
<EmbeddedResource Include="Resources\CodeGenerationError.html" />
</ItemGroup>
</Project>