-
Notifications
You must be signed in to change notification settings - Fork 0
/
SLang-Metrics-vs-code.csproj
35 lines (35 loc) · 1.25 KB
/
SLang-Metrics-vs-code.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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build">
<Import Project="Sdk.props" Sdk="Microsoft.NET.Sdk" />
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net40</TargetFramework>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
</PropertyGroup>
<PropertyGroup>
<StartupObject />
</PropertyGroup>
<ItemGroup>
<Compile Include="src\Program.cs" />
<Compile Include="src\ShiftReduceParser\ShiftReduceParserCode.cs" />
<Compile Include="src\SLangLookaheadScanner.cs" />
<Compile Include="src\LanguageElements.cs" />
<Compile Include="src\MetricCollector.cs" />
<Compile Include="src\TreeTraverse.cs" />
<Compile Include="src\UnitTests\Testing.cs" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<Import Project="Sdk.targets" Sdk="Microsoft.NET.Sdk" />
<ItemGroup>
<Lex Include="grammars\SLangScanner.lex" />
<Compile Include="src\SLangScanner.cs">
<DependentUpon>src\SLangScanner.lex</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<Yacc Include="grammars\SLangParser.y" />
<Compile Include="src\SLangParser.cs">
<DependentUpon>src\SLangParser.y</DependentUpon>
</Compile>
</ItemGroup>
</Project>