tlang-interperter-cs/tlanglib/tlanglib.csproj

21 lines
418 B
XML
Raw Normal View History

2023-03-10 04:33:58 +00:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<!--<OutputType>Exe</OutputType>-->
<TargetFramework>netstandard2.0</TargetFramework>
2023-03-10 10:12:36 +00:00
<Packable>true</Packable>
2023-03-10 04:33:58 +00:00
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="launcher\launcher.tlang" />
</ItemGroup>
2023-03-10 10:12:36 +00:00
2023-06-08 18:14:35 +00:00
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
</ItemGroup>
2023-03-10 04:33:58 +00:00
</Project>