forked from japajoe/LuaNET
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLuaNET.csproj
executable file
·34 lines (30 loc) · 1.37 KB
/
LuaNET.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
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net7.0;netstandard2.0;netstandard2.1</TargetFrameworks>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<PackageId>JAJ.Packages.LuaNET</PackageId>
<Version>1.0.0</Version>
<Authors>W.M.R Jap-A-Joe</Authors>
<PackageTags>Lua LuaJIT</PackageTags>
<Description>
A wrapper for Lua with support for LuaJIT. This library has built-in functionality to load modules and call C-Sharp methods directly by function pointer.
</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageProjectUrl>https://github.com/japajoe/LuaNET</PackageProjectUrl>
<RepositoryUrl>https://github.com/japajoe/LuaNET.git</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<Copyright>Copyright $([System.DateTime]::Now.Year) W.M.R Jap-A-Joe</Copyright>
</PropertyGroup>
<ItemGroup>
<Content Remove="**/Examples/**" />
<Compile Remove="**/Examples/**" />
<EmbeddedResource Remove="**/Examples/**" />
<None Remove="**/Examples/**" />
<None Include="README.md" Pack="true" PackagePath="/"/>
</ItemGroup>
<ItemGroup>
<Content Include="runtimes\**" PackagePath="runtimes" Visible="false" />
</ItemGroup>
</Project>