-
Notifications
You must be signed in to change notification settings - Fork 330
Expand file tree
/
Copy pathFable.Tests.Rust.fsproj
More file actions
85 lines (85 loc) · 4.07 KB
/
Copy pathFable.Tests.Rust.fsproj
File metadata and controls
85 lines (85 loc) · 4.07 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<RollForward>Major</RollForward>
<IsPackable>false</IsPackable>
<GenerateProgramFile>false</GenerateProgramFile>
<LangVersion>Preview</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.7.0" />
<PackageReference Include="XUnit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="3.1.5">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="../../src/Fable.Core/Fable.Core.fsproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="tests/common/Aether.fs" />
<Compile Include="tests/common/Imports.fs" />
<Compile Include="tests/common/Util.fs" />
<Compile Include="tests/common/Util2.fs" />
<Compile Include="tests/common/Util3.fs" />
<Compile Include="tests/src/AnonRecordTests.fs" />
<Compile Include="tests/src/ApplicativeTests.fs" />
<Compile Include="tests/src/ArithmeticTests.fs" />
<Compile Include="tests/src/RandomTests.fs" />
<Compile Include="tests/src/ArrayTests.fs" />
<Compile Include="tests/src/AsyncTests.fs" />
<Compile Include="tests/src/ByRefTests.fs" />
<Compile Include="tests/src/CharTests.fs" />
<Compile Include="tests/src/ClassTests.fs" />
<Compile Include="tests/src/ClosureTests.fs" />
<Compile Include="tests/src/ComparisonTests.fs" />
<Compile Include="tests/src/ControlFlowTests.fs" />
<Compile Include="tests/src/ConvertTests.fs" />
<Compile Include="tests/src/CustomOperatorTests.fs" />
<Compile Include="tests/src/DateTimeOffsetTests.fs" />
<Compile Include="tests/src/DateTimeTests.fs" />
<Compile Include="tests/src/DateOnlyTests.fs" />
<Compile Include="tests/src/DictionaryTests.fs" />
<!-- <Compile Include="tests/src/ElmishParserTests.fs" /> -->
<!-- <Compile Include="tests/src/EnumerableTests.fs" /> -->
<Compile Include="tests/src/EnumTests.fs" />
<!-- <Compile Include="tests/src/EventTests.fs" /> -->
<Compile Include="tests/src/GuidTests.fs" />
<Compile Include="tests/src/HashSetTests.fs" />
<Compile Include="tests/src/InlineIfLambdaTests.fs" />
<Compile Include="tests/src/InterfaceTests.fs" />
<Compile Include="tests/src/InteropTests.fs" />
<!-- <Compile Include="tests/src/ImportTests.fs" /> -->
<!-- <Compile Include="tests/src/ListCollectorTests.fs" /> -->
<Compile Include="tests/src/ListTests.fs" />
<Compile Include="tests/src/MapTests.fs" />
<Compile Include="tests/src/MiscTests.fs" />
<Compile Include="tests/src/MiscTests2.fs" />
<Compile Include="tests/src/NBodyTests.fs" />
<Compile Include="tests/src/NullnessTests.fs" />
<!-- <Compile Include="tests/src/ObservableTests.fs" /> -->
<Compile Include="tests/src/OptionTests.fs" />
<Compile Include="tests/src/QueueTests.fs" />
<Compile Include="tests/src/RecordTests.fs" />
<!-- <Compile Include="tests/src/ReflectionTests.fs" /> -->
<Compile Include="tests/src/RegexTests.fs" />
<Compile Include="tests/src/ResizeArrayTests.fs" />
<Compile Include="tests/src/ResultTests.fs" />
<Compile Include="tests/src/SeqExpressionTests.fs" />
<Compile Include="tests/src/SeqTests.fs" />
<Compile Include="tests/src/SetTests.fs" />
<Compile Include="tests/src/StackTests.fs" />
<Compile Include="tests/src/StringTests.fs" />
<Compile Include="tests/src/SudokuTest.fs" />
<!-- <Compile Include="tests/src/TaskTests.fs" /> -->
<Compile Include="tests/src/TailCallTests.fs" />
<Compile Include="tests/src/TimeOnlyTests.fs" />
<Compile Include="tests/src/TimeSpanTests.fs" />
<Compile Include="tests/src/TupleTests.fs" />
<Compile Include="tests/src/TypeTests.fs" />
<Compile Include="tests/src/UnionTests.fs" />
<!-- <Compile Include="tests/src/UriTests.fs" /> -->
<Compile Include="tests/src/main.fs" />
</ItemGroup>
</Project>