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