forked from BAndysc/WoWDatabaseEditor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWDE.SqlInterpreter.csproj
39 lines (39 loc) · 1.45 KB
/
WDE.SqlInterpreter.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<OutputType>Library</OutputType>
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
<Nullable>enable</Nullable>
<WarningsAsErrors>nullable</WarningsAsErrors>
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
<Configurations>Debug;Release</Configurations>
<Platforms>AnyCPU</Platforms>
</PropertyGroup>
<PropertyGroup>
<OutputPath>..\bin\$(Configuration)\</OutputPath>
</PropertyGroup>
<Import Project="..\Module.props" />
<Import Project="..\AntlrSupport.props" />
<ItemGroup>
<ProjectReference Include="..\WoWDatabaseEditor.Common\WDE.Common\WDE.Common.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Antlr4.Runtime.Standard">
<Version>4.9.3</Version>
</PackageReference>
<PackageReference Include="Antlr4BuildTasks">
<Version>12.2.0</Version>
</PackageReference>
<PackageReference Include="DynamicData">
<Version>7.2.1</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<Antlr4 Include="Antlr\*.g4">
<Generator>MSBuild:Compile</Generator>
<CustomToolNamespace>WDE.SqlInterpreter.Antlr</CustomToolNamespace>
<Listener>False</Listener>
<Visitor>True</Visitor>
</Antlr4>
</ItemGroup>
</Project>