-
-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathGenHTTP.Testing.Acceptance.csproj
More file actions
110 lines (86 loc) · 5.86 KB
/
GenHTTP.Testing.Acceptance.csproj
File metadata and controls
110 lines (86 loc) · 5.86 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<IsPackable>false</IsPackable>
<!-- remove this line after Fleck has been removed -->
<NoWarn>CS1591,CS1587,CS1572,CS1573,CS0612,CS0618</NoWarn>
</PropertyGroup>
<ItemGroup>
<None Remove="Resources\Certificate.pfx" />
<None Remove="Resources\Error.html" />
<None Remove="Resources\File.txt" />
<None Remove="Resources\LargeTemplate.html" />
<None Remove="Resources\OtherFile.txt" />
<None Remove="Resources\Subdirectory\AnotherFile.txt" />
<None Remove="Resources\Template.html" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\Certificate.pfx">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</EmbeddedResource>
<EmbeddedResource Include="Resources\Error.html" />
<EmbeddedResource Include="Resources\LargeTemplate.html" />
<EmbeddedResource Include="Resources\OtherFile.txt" />
<None Remove="Resources\Archives\Archive.7z" />
<EmbeddedResource Include="Resources\Archives\Archive.7z" />
<None Remove="Resources\Archives\Archive.tar" />
<None Remove="Resources\Archives\Archive.zip" />
<EmbeddedResource Include="Resources\Archives\Archive.zip" />
<None Remove="Resources\Archives\Archive.tar.gz" />
<EmbeddedResource Include="Resources\Archives\Archive.tar.gz" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Resources\File.txt" />
<EmbeddedResource Include="Resources\Subdirectory\AnotherFile.txt" />
<EmbeddedResource Include="Resources\Template.html" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.4.0" />
<PackageReference Include="Microsoft.OpenApi" Version="3.5.2" />
<PackageReference Include="Microsoft.OpenApi.YamlReader" Version="3.5.2" />
<PackageReference Include="MSTest" Version="4.2.1" />
<PackageReference Include="NSubstitute" Version="5.3.0" />
<PackageReference Include="coverlet.collector" Version="10.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Websocket.Client" Version="5.3.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\API\GenHTTP.Api.csproj" />
<ProjectReference Include="..\..\Engine\Internal\GenHTTP.Engine.Internal.csproj" />
<ProjectReference Include="..\..\Engine\Kestrel\GenHTTP.Engine.Kestrel.csproj" />
<ProjectReference Include="..\..\Engine\Shared\GenHTTP.Engine.Shared.csproj" />
<ProjectReference Include="..\..\Adapters\AspNetCore\GenHTTP.Adapters.AspNetCore.csproj" />
<ProjectReference Include="..\..\Modules\Archives\GenHTTP.Modules.Archives.csproj" />
<ProjectReference Include="..\Testing\GenHTTP.Testing.csproj" />
<ProjectReference Include="..\..\Modules\ApiBrowsing\GenHTTP.Modules.ApiBrowsing.csproj" />
<ProjectReference Include="..\..\Modules\I18n\GenHTTP.Modules.I18n.csproj" />
<ProjectReference Include="..\..\Modules\Authentication\GenHTTP.Modules.Authentication.csproj" />
<ProjectReference Include="..\..\Modules\Caching\GenHTTP.Modules.Caching.csproj" />
<ProjectReference Include="..\..\Modules\Compression\GenHTTP.Modules.Compression.csproj" />
<ProjectReference Include="..\..\Modules\Controllers\GenHTTP.Modules.Controllers.csproj" />
<ProjectReference Include="..\..\Modules\Conversion\GenHTTP.Modules.Conversion.csproj" />
<ProjectReference Include="..\..\Modules\DirectoryBrowsing\GenHTTP.Modules.DirectoryBrowsing.csproj" />
<ProjectReference Include="..\..\Modules\DependencyInjection\GenHTTP.Modules.DependencyInjection.csproj" />
<ProjectReference Include="..\..\Modules\ErrorHandling\GenHTTP.Modules.ErrorHandling.csproj" />
<ProjectReference Include="..\..\Modules\Functional\GenHTTP.Modules.Functional.csproj" />
<ProjectReference Include="..\..\Modules\IO\GenHTTP.Modules.IO.csproj" />
<ProjectReference Include="..\..\Modules\Layouting\GenHTTP.Modules.Layouting.csproj" />
<ProjectReference Include="..\..\Modules\LoadBalancing\GenHTTP.Modules.LoadBalancing.csproj" />
<ProjectReference Include="..\..\Modules\Pages\GenHTTP.Modules.Pages.csproj" />
<ProjectReference Include="..\..\Modules\Practices\GenHTTP.Modules.Practices.csproj" />
<ProjectReference Include="..\..\Modules\Protobuf\GenHTTP.Modules.Protobuf.csproj" />
<ProjectReference Include="..\..\Modules\Reflection\GenHTTP.Modules.Reflection.csproj" />
<ProjectReference Include="..\..\Modules\ReverseProxy\GenHTTP.Modules.ReverseProxy.csproj" />
<ProjectReference Include="..\..\Modules\Security\GenHTTP.Modules.Security.csproj" />
<ProjectReference Include="..\..\Modules\ServerCaching\GenHTTP.Modules.ServerCaching.csproj" />
<ProjectReference Include="..\..\Modules\SinglePageApplications\GenHTTP.Modules.SinglePageApplications.csproj" />
<ProjectReference Include="..\..\Modules\StaticWebsites\GenHTTP.Modules.StaticWebsites.csproj" />
<ProjectReference Include="..\..\Modules\VirtualHosting\GenHTTP.Modules.VirtualHosting.csproj" />
<ProjectReference Include="..\..\Modules\Webservices\GenHTTP.Modules.Webservices.csproj" />
<ProjectReference Include="..\..\Modules\OpenApi\GenHTTP.Modules.OpenApi.csproj" />
<ProjectReference Include="..\..\Modules\Websockets\GenHTTP.Modules.Websockets.csproj" />
<ProjectReference Include="..\..\Modules\Inspection\GenHTTP.Modules.Inspection.csproj" />
<ProjectReference Include="..\..\Modules\ServerSentEvents\GenHTTP.Modules.ServerSentEvents.csproj" />
</ItemGroup>
</Project>