|
|
@@ -0,0 +1,15 @@
|
|
|
+<Project Sdk="Microsoft.NET.Sdk">
|
|
|
+
|
|
|
+ <PropertyGroup>
|
|
|
+ <OutputType>Exe</OutputType>
|
|
|
+ <TargetFramework>net9.0</TargetFramework>
|
|
|
+ <LangVersion>13</LangVersion>
|
|
|
+ <ImplicitUsings>enable</ImplicitUsings>
|
|
|
+ <Nullable>enable</Nullable>
|
|
|
+ </PropertyGroup>
|
|
|
+
|
|
|
+ <ItemGroup>
|
|
|
+ <ProjectReference Include="..\..\src\Lua\Lua.csproj" />
|
|
|
+ </ItemGroup>
|
|
|
+
|
|
|
+</Project>
|