|
1 | 1 | <Project Sdk="Microsoft.NET.Sdk"> |
2 | 2 |
|
3 | 3 | <PropertyGroup> |
4 | | - <TargetFrameworks>net6.0;net6.0-windows</TargetFrameworks> |
| 4 | + <TargetFrameworks>net7.0;net7.0-windows;net6.0;net6.0-windows</TargetFrameworks> |
5 | 5 | <ImplicitUsings>enable</ImplicitUsings> |
| 6 | + <AllowUnsafeBlocks>true</AllowUnsafeBlocks> |
6 | 7 | <Nullable>enable</Nullable> |
7 | 8 | <PackageId>Lua.NET</PackageId> |
8 | | - <Version>3.0.0</Version> |
| 9 | + <Version>4.0.0</Version> |
9 | 10 | <Authors>Cody Tilkins</Authors> |
10 | 11 | <Copyright>Copyright © Cody Tilkins 2023</Copyright> |
11 | 12 | <Title>Lua.NET</Title> |
12 | 13 | <Product>Lua.NET</Product> |
13 | 14 | <PackageIcon>Lua.NET.Logo.png</PackageIcon> |
14 | 15 | <PackageIconUrl>https://raw.githubusercontent.com/tilkinsc/Lua.NET/main/Lua.NET.Logo.png</PackageIconUrl> |
15 | 16 | <PackageTags>Lua LuaJIT</PackageTags> |
16 | | - <Description>Lua.NET is full bindings to Lua and LuaJIT</Description> |
| 17 | + <Description>Lua.NET contains full bindings to Lua5.1.5, Lua5.2.4, Lua5.3.6, Lua.5.4.6 and LuaJIT</Description> |
17 | 18 | <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
18 | 19 | <PackageReadmeFile>README.md</PackageReadmeFile> |
19 | 20 | <PackageLicenseFile>LICENSE</PackageLicenseFile> |
20 | 21 | <RepositoryUrl>https://github.com/tilkinsc/Lua.NET</RepositoryUrl> |
21 | | - <RepositoryType>git</RepositoryType> |
| 22 | + <RepositoryType>git</RepositoryType> |
| 23 | + <NoWarn>CS8981</NoWarn> |
22 | 24 | </PropertyGroup> |
23 | 25 |
|
24 | 26 | <ItemGroup> |
|
27 | 29 | <None Include="Lua.NET.Logo.png" Pack="true" PackagePath="\" /> |
28 | 30 | </ItemGroup> |
29 | 31 |
|
| 32 | + <ItemGroup> |
| 33 | + <Content Include="native/win-x64/*.dll" Pack="true" PackagePath="native\win-x64" CopyToOutputDirectory="PreserveNewest" /> |
| 34 | + <Content Include="native/linux-x64/*.dll" Pack="true" PackagePath="native\linux-x64" CopyToOutputDirectory="PreserveNewest" /> |
| 35 | + </ItemGroup> |
| 36 | + |
30 | 37 | </Project> |
0 commit comments