-
Notifications
You must be signed in to change notification settings - Fork 284
Expand file tree
/
Copy pathFSharp.Data.Core.Tests.fsproj
More file actions
87 lines (87 loc) · 4.12 KB
/
FSharp.Data.Core.Tests.fsproj
File metadata and controls
87 lines (87 loc) · 4.12 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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<IsPackable>false</IsPackable>
<!-- Tests won't run without this, at least on OSX, see https://github.com/NuGet/Home/issues/4837#issuecomment-354536302 -->
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<GenerateProgramFile>false</GenerateProgramFile>
<OtherFlags>$(OtherFlags) --warnon:1182 --nowarn:44</OtherFlags>
<!-- always have tailcalls on for design time compiler add-in to allow repo to compile in DEBUG, see https://github.com/fsprojects/FSharp.Data/issues/1410 -->
<Tailcalls>true</Tailcalls>
</PropertyGroup>
<ItemGroup>
<FrameworkReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="../FSharp.Data.Tests/Data/**/*.*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</EmbeddedResource>
<Compile Include="Http.fs" />
<Compile Include="HttpContentTypes.fs" />
<Compile Include="HttpRequestHeaders.fs" />
<Compile Include="HttpEncodings.fs" />
<Compile Include="NameUtils.fs" />
<Compile Include="NameUtilsProperties.fs" />
<Compile Include="Pluralizer.fs" />
<Compile Include="IOTests.fs" />
<Compile Include="TextConversions.fs" />
<Compile Include="Caching.fs" />
<Compile Include="TextRuntime.fs" />
<Compile Include="JsonValue.fs" />
<Compile Include="JsonParserProperties.fs" />
<Compile Include="JsonConversions.fs" />
<Compile Include="JsonDocument.fs" />
<Compile Include="JsonRuntime.fs" />
<Compile Include="JsonSchema.fs" />
<Compile Include="CsvReader.fs" />
<Compile Include="CsvFile.fs" />
<Compile Include="CsvParserProperties.fs" />
<Compile Include="HtmlCharRefs.fs" />
<Compile Include="HtmlParser.fs" />
<Compile Include="HtmlOperations.fs" />
<Compile Include="HtmlAttributeExtensions.fs" />
<Compile Include="HtmlCssSelectors.fs" />
<Compile Include="HtmlTableCell.fs" />
<Compile Include="HtmlInference.fs" />
<Compile Include="StructuralInference.fs" />
<Compile Include="StructuralTypes.fs" />
<Compile Include="BaseTypesHtmlDocument.fs" />
<Compile Include="BaseTypesHtmlGenerics.fs" />
<Compile Include="HtmlRuntimeTypes.fs" />
<Compile Include="XmlExtensions.fs" />
<Compile Include="XmlInference.fs" />
<Compile Include="XmlRuntime.fs" />
<Compile Include="XmlSchema.fs" />
<Compile Include="WorldBankRuntime.fs" />
<Compile Include="Program.fs" />
</ItemGroup>
<ItemGroup>
<None Include="paket.references" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\FSharp.Data.Http\FSharp.Data.Http.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.Runtime.Utilities\FSharp.Data.Runtime.Utilities.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.Json.Core\FSharp.Data.Json.Core.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.Xml.Core\FSharp.Data.Xml.Core.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.Csv.Core\FSharp.Data.Csv.Core.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.Html.Core\FSharp.Data.Html.Core.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.WorldBank.Core\FSharp.Data.WorldBank.Core.fsproj" />
<ProjectReference Include="..\..\src\FSharp.Data.DesignTime\FSharp.Data.DesignTime.fsproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Update="FSharp.Core" Version="6.0.1" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="6.0.4">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<Import Project="..\..\.paket\Paket.Restore.targets" />
</Project>