-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathHttpFs.UnitTests.fsproj
More file actions
26 lines (26 loc) · 960 Bytes
/
HttpFs.UnitTests.fsproj
File metadata and controls
26 lines (26 loc) · 960 Bytes
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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<AssemblyName>HttpFs.UnitTests</AssemblyName>
<Name>HttpFs.UnitTests</Name>
<OutputType>Exe</OutputType>
<TargetFrameworks>net7.0;net471</TargetFrameworks>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<ItemGroup>
<Compile Include="AssemblyInfo.fs" />
<Compile Include="Testing.fs" />
<Compile Include="Expect.fs" />
<Compile Include="Api.fs" />
<Compile Include="RequestBody.fs" />
<Compile Include="SendingStreams.fs" />
<Compile Include="SSE.fs" />
<Compile Include="Program.fs" />
<None Include="paket.references" />
<None Include="pix.gif">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<ProjectReference Include="..\HttpFs\HttpFs.fsproj" />
</ItemGroup>
<Import Project="..\.paket\Paket.Restore.targets" />
</Project>