-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLuaMCP.csproj
More file actions
21 lines (18 loc) · 763 Bytes
/
LuaMCP.csproj
File metadata and controls
21 lines (18 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<Version>0.2.1</Version>
<Copyright>Copyright © 2025 called_D, MIT license</Copyright>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Lua.NET" Version="5.0.3" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="9.0.4" />
<PackageReference Include="ModelContextProtocol" Version="0.1.0-preview.8" />
</ItemGroup>
</Project>