tlang-runtime-compiler/ByteCodeTest/ByteCodeTest.csproj

19 lines
458 B
XML
Raw Permalink Normal View History

2023-07-29 00:11:09 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<ItemGroup>
<ProjectReference Include="..\TLang.BytecodeCompiler\TLang.BytecodeCompiler.csproj" />
</ItemGroup>
2023-07-30 07:55:10 +00:00
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
2023-07-29 00:11:09 +00:00
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net7.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
</Project>