Skip to content

Commit 31366f7

Browse files
committed
Added new logo, Added logo to README, csproj now has logo
1 parent 1664b4b commit 31366f7

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

Lua.NET.csproj

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,30 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net6.0</TargetFramework>
4+
<TargetFrameworks>net6.0;net6.0-windows</TargetFrameworks>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
77
<PackageId>Lua.NET</PackageId>
8-
<Version>1.2.0</Version>
8+
<Version>1.2.3</Version>
99
<Authors>Cody Tilkins</Authors>
10-
<copyright>Copyright © Cody Tilkins 2022</copyright>
10+
<Copyright>Copyright © Cody Tilkins 2022</Copyright>
11+
<Title>Lua.NET</Title>
12+
<Product>Lua.NET</Product>
13+
<PackageIcon>Lua.NET.Logo.png</PackageIcon>
14+
<PackageIconUrl>https://raw.githubusercontent.com/tilkinsc/Lua.NET/main/Lua.NET.Logo.png</PackageIconUrl>
15+
<PackageTags>Lua LuaJIT</PackageTags>
1116
<Description>Lua.NET is full bindings to Lua and LuaJIT</Description>
1217
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1318
<PackageReadmeFile>README.md</PackageReadmeFile>
1419
<PackageLicenseFile>LICENSE</PackageLicenseFile>
20+
<RepositoryUrl>https://github.com/tilkinsc/Lua.NET</RepositoryUrl>
21+
<RepositoryType>git</RepositoryType>
1522
</PropertyGroup>
1623

1724
<ItemGroup>
18-
<None Include="README.md" Pack="true" PackagePath="\"/>
19-
<None Include="LICENSE" Pack="true" PackagePath=""/>
25+
<None Include="README.md" Pack="true" PackagePath="\" />
26+
<None Include="LICENSE" Pack="true" PackagePath="\" />
27+
<None Include="Lua.NET.Logo.png" Pack="true" PackagePath="\" />
2028
</ItemGroup>
2129

2230
</Project>

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
# Lua.NET
2+
![Logo](Lua.NET.Logo.png)
3+
24
C# .NET Core 6.0 Lua bindings and helper functions.
35

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

79
```
8-
dotnet add package Lua.NET --version 1.2.2
10+
dotnet add package Lua.NET --version 1.2.3
911
```
1012

1113
Supports Lua5.4 Lua5.3 Lua5.2 Lua5.1 and LuaJIT

0 commit comments

Comments
 (0)