-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathbhl.csproj
28 lines (23 loc) · 961 Bytes
/
bhl.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<OutputPath>build\$(Configuration)\$(TargetFramework)\$(MSBuildProjectName)</OutputPath>
<TargetFramework>net8.0</TargetFramework>
<EnableDefaultCompileItems>false</EnableDefaultCompileItems>
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
<Optimize>true</Optimize>
</PropertyGroup>
<ItemGroup>
<Compile Include="bhl.cs" />
<Compile Include="src\tasks\*.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="src\compile\bhl_front.csproj" />
<ProjectReference Include="src\lsp\bhl_lsp.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Antlr4.Runtime.Standard" Version="4.13.1" />
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Mono.Options" Version="6.12.0.148" />
</ItemGroup>
</Project>