-
Notifications
You must be signed in to change notification settings - Fork 307
/
Copy pathRubberduck.Parsing.csproj
80 lines (80 loc) · 3.07 KB
/
Rubberduck.Parsing.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
<?xml version="1.0" encoding="utf-8"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Product>Rubberduck.Parsing</Product>
<Description>This assembly contains the parts responsible for turning VBA code into tokens and parse trees.</Description>
<Copyright>Copyright © 2015-2023</Copyright>
<AssemblyName>Rubberduck.Parsing</AssemblyName>
<Title>Rubberduck.Parsing</Title>
<RootNamespace>Rubberduck.Parsing</RootNamespace>
<ProjectGuid>{A4A618E1-CBCA-435F-9C6C-5181E030ADFC}</ProjectGuid>
<UnifyOutputPath>true</UnifyOutputPath>
</PropertyGroup>
<PropertyGroup>
<DocumentationFile>Rubberduck.Parsing.xml</DocumentationFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<WarningLevel>1</WarningLevel>
<UseVSHostingProcess>true</UseVSHostingProcess>
<NoWarn>1701;1702;1591;4011;1001;7035;1053</NoWarn>
</PropertyGroup>
<Import Project="..\RubberduckBaseProject.csproj" />
<PropertyGroup>
<Antlr4UseCSharpGenerator>True</Antlr4UseCSharpGenerator>
</PropertyGroup>
<ItemGroup>
<Antlr4 Include="Grammar\VBALexer.g4">
<CustomToolNamespace>Rubberduck.Parsing.Grammar</CustomToolNamespace>
<Visitor>false</Visitor>
<Listener>false</Listener>
</Antlr4>
<Antlr4 Include="Grammar\VBAParser.g4">
<CustomToolNamespace>Rubberduck.Parsing.Grammar</CustomToolNamespace>
</Antlr4>
<Antlr4 Include="Preprocessing\*.g4">
<CustomToolNamespace>Rubberduck.Parsing.PreProcessing</CustomToolNamespace>
</Antlr4>
</ItemGroup>
<ItemGroup>
<None Include="..\.editorconfig" Link=".editorconfig" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Rubberduck.InternalApi\Rubberduck.InternalApi.csproj" />
<ProjectReference Include="..\Rubberduck.SettingsProvider\Rubberduck.SettingsProvider.csproj" />
<ProjectReference Include="..\Rubberduck.VBEEditor\Rubberduck.VBEditor.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Antlr4">
<Version>4.6.4</Version>
</PackageReference>
<PackageReference Include="Antlr4.CodeGenerator">
<Version>4.6.4</Version>
</PackageReference>
<PackageReference Include="Antlr4.Runtime">
<Version>4.6.6</Version>
</PackageReference>
<PackageReference Include="NLog">
<Version>4.5.10</Version>
</PackageReference>
<PackageReference Include="NLog.Schema">
<Version>4.5.10</Version>
</PackageReference>
<PackageReference Include="System.ValueTuple">
<Version>4.5.0</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Compile Update="Properties\ParsingSettings.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>ParsingSettings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<None Update="Properties\ParsingSettings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>ParsingSettings.Designer.cs</LastGenOutput>
</None>
</ItemGroup>
</Project>