-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathToffee.Tests.csproj
103 lines (97 loc) · 4.85 KB
/
Toffee.Tests.csproj
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandDotNet.TestTools" Version="5.0.1" />
<PackageReference Include="FluentAssertions" Version="6.6.0" />
<PackageReference Include="JunitXml.TestLogger" Version="3.0.110" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Include="Moq" Version="4.17.2" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.1.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Toffee\Toffee.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Update="LexicalAnalysis\LexerTests.KeywordsAndIdentifiers.cs">
<DependentUpon>LexerTests.cs</DependentUpon>
</Compile>
<Compile Update="LexicalAnalysis\LexerTests.Numbers.cs">
<DependentUpon>LexerTests.cs</DependentUpon>
</Compile>
<Compile Update="LexicalAnalysis\LexerTests.OperatorsAndComments.cs">
<DependentUpon>LexerTests.cs</DependentUpon>
</Compile>
<Compile Update="LexicalAnalysis\LexerTests.Strings.cs">
<DependentUpon>LexerTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\ExpressionParsingTests.Block.cs">
<DependentUpon>ExpressionParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\StatementParsingTests.Expression.cs">
<DependentUpon>StatementParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\ExpressionParsingTests.Conditional.cs">
<DependentUpon>ExpressionParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\ExpressionParsingTests.ForLoop.cs">
<DependentUpon>ExpressionParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\ExpressionParsingTests.FunctionCall.cs">
<DependentUpon>ExpressionParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\ExpressionParsingTests.FunctionDefinition.cs">
<DependentUpon>ExpressionParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\ExpressionParsingTests.PatternMatching.cs">
<DependentUpon>ExpressionParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\ExpressionParsingTests.WhileLoop.cs">
<DependentUpon>ExpressionParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\StatementParsingTests.VariableInitializationList.cs">
<DependentUpon>StatementParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\ExpressionParsingTests.Binary.cs">
<DependentUpon>ExpressionParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\ExpressionParsingTests.Unary.cs">
<DependentUpon>ExpressionParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\ExpressionParsingTests.Grouping.cs">
<DependentUpon>ExpressionParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\ExpressionParsingTests.Literal.cs">
<DependentUpon>ExpressionParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\ExpressionParsingTests.TypeCheckingCast.cs">
<DependentUpon>ExpressionParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\ExpressionParsingTests.Identifier.cs">
<DependentUpon>ExpressionParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\ExpressionParsingTests.TypeChecking.cs">
<DependentUpon>ExpressionParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\StatementParsingTests.Break.cs">
<DependentUpon>StatementParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\StatementParsingTests.Return.cs">
<DependentUpon>StatementParsingTests.cs</DependentUpon>
</Compile>
<Compile Update="SyntacticAnalysis\StatementParsingTests.NamespaceImport.cs">
<DependentUpon>StatementParsingTests.cs</DependentUpon>
</Compile>
</ItemGroup>
</Project>