Skip to content

Commit

Permalink
Added new logo, Added logo to README, csproj now has logo
Browse files Browse the repository at this point in the history
  • Loading branch information
tilkinsc committed Jun 25, 2022
1 parent 1664b4b commit 31366f7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
18 changes: 13 additions & 5 deletions Lua.NET.csproj
Original file line number Diff line number Diff line change
@@ -1,22 +1,30 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFrameworks>net6.0;net6.0-windows</TargetFrameworks>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageId>Lua.NET</PackageId>
<Version>1.2.0</Version>
<Version>1.2.3</Version>
<Authors>Cody Tilkins</Authors>
<copyright>Copyright © Cody Tilkins 2022</copyright>
<Copyright>Copyright © Cody Tilkins 2022</Copyright>
<Title>Lua.NET</Title>
<Product>Lua.NET</Product>
<PackageIcon>Lua.NET.Logo.png</PackageIcon>
<PackageIconUrl>https://raw.githubusercontent.com/tilkinsc/Lua.NET/main/Lua.NET.Logo.png</PackageIconUrl>
<PackageTags>Lua LuaJIT</PackageTags>
<Description>Lua.NET is full bindings to Lua and LuaJIT</Description>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<RepositoryUrl>https://github.com/tilkinsc/Lua.NET</RepositoryUrl>
<RepositoryType>git</RepositoryType>
</PropertyGroup>

<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="\"/>
<None Include="LICENSE" Pack="true" PackagePath=""/>
<None Include="README.md" Pack="true" PackagePath="\" />
<None Include="LICENSE" Pack="true" PackagePath="\" />
<None Include="Lua.NET.Logo.png" Pack="true" PackagePath="\" />
</ItemGroup>

</Project>
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
# Lua.NET
![Logo](Lua.NET.Logo.png)

C# .NET Core 6.0 Lua bindings and helper functions.

https://github.com/tilkinsc/Lua.NET
Copyright © Cody Tilkins 2022 MIT License

```
dotnet add package Lua.NET --version 1.2.2
dotnet add package Lua.NET --version 1.2.3
```

Supports Lua5.4 Lua5.3 Lua5.2 Lua5.1 and LuaJIT
Expand Down

0 comments on commit 31366f7

Please sign in to comment.