forked from fsprojects/SwaggerProvider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSwashbuckle.WebApi.Server.fsproj
More file actions
27 lines (27 loc) · 1.2 KB
/
Copy pathSwashbuckle.WebApi.Server.fsproj
File metadata and controls
27 lines (27 loc) · 1.2 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net9.0</TargetFramework>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<RootNamespace>Swashbuckle.WebApi.Server</RootNamespace>
</PropertyGroup>
<ItemGroup>
<Compile Include="Controllers\Types.fs" />
<Compile Include="Controllers\ReturnControllers.fs" />
<Compile Include="Controllers\ReturnTextControllers.fs" />
<Compile Include="Controllers\UpdateControllers.fs" />
<Compile Include="Controllers\ResourceControllers.fs" />
<Compile Include="Controllers\ValuesController.fs" />
<Compile Include="Controllers\FileController.fs" />
<Compile Include="Controllers\NoContentControllers.fs" />
<Compile Include="Controllers\SpecialCasesControllers.fs" />
<Compile Include="Startup.fs" />
<Compile Include="Program.fs" />
<None Include="paket.references" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\SwaggerProvider.Runtime\SwaggerProvider.Runtime.fsproj" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>