libragephoto: move to 0.7.0 version and other changes

- src/dotnet: move targets file to net47 only
- src/dotnet: rename Syping.RagePhoto.Core to RagePhoto.Core
- GitHub Actions: add Linux .NET build
This commit is contained in:
Syping 2025-10-23 01:16:47 +02:00
parent cd5a160d70
commit 3a1d1e59b5
11 changed files with 142 additions and 360 deletions

View file

@ -1,38 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net47</TargetFrameworks>
<AssemblyName>Syping.RagePhoto.Core</AssemblyName>
<RootNamespace>Syping.RagePhoto</RootNamespace>
<Version>0.6.2</Version>
<AssemblyVersion>0.6.2</AssemblyVersion>
<FileVersion>0.6.2</FileVersion>
<Authors>Syping</Authors>
<Copyright>Copyright © 2025 Syping</Copyright>
<Description>Open Source RAGE Photo Parser for GTA V and RDR 2</Description>
<PackageLicenseExpression>BSD-2-Clause</PackageLicenseExpression>
<RepositoryUrl>https://github.com/Syping/libragephoto</RepositoryUrl>
<Nullable>disable</Nullable>
</PropertyGroup>
<PropertyGroup Condition="'$(TargetFramework)' == 'net47'">
<LangVersion>8.0</LangVersion>
</PropertyGroup>
<ItemGroup>
<NativeDlls Include="runtimes\**\libragephoto.dll" />
</ItemGroup>
<ItemGroup>
<None Include="@(NativeDlls)" Pack="true" PackagePath="runtimes\%(RecursiveDir)%(Filename)%(Extension)">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
<ItemGroup>
<None Include="Syping.RagePhoto.Core.targets" Pack="true" PackagePath="buildTransitive\Syping.RagePhoto.Core.targets">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>