-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathSwaggerProvider.Tests.fsproj
More file actions
28 lines (28 loc) · 1.18 KB
/
SwaggerProvider.Tests.fsproj
File metadata and controls
28 lines (28 loc) · 1.18 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFrameworks>net10.0</TargetFrameworks>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup>
<AssemblyName>SwaggerProvider.Tests</AssemblyName>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
</PropertyGroup>
<ItemGroup>
<Compile Include="v2\Schema.DefinitionsTests.fs" />
<Compile Include="v2\Schema.PathsTests.fs" />
<Compile Include="v2\Schema.Spec.Json.Tests.fs" />
<Compile Include="v2\Schema.Spec.Yaml.Tests.fs" />
<Compile Include="APIs.guru.fs" />
<Compile Include="Schema.Parser.Tests.fs" />
<Compile Include="v3\Schema.TypeMappingTests.fs" />
<Compile Include="PathResolutionTests.fs" />
<Compile Include="SsrfSecurityTests.fs" />
<Compile Include="RuntimeHelpersTests.fs" />
<Compile Include="UtilsTests.fs" />
<None Include="paket.references" />
<ProjectReference Include="..\..\src\SwaggerProvider.DesignTime\SwaggerProvider.DesignTime.fsproj" />
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>