libragephoto 0.8.0 release

- CMakeLists.txt: update version to 0.8.0
- src/dotnet: add .NET 8.0 target
- src/dotnet: add README.md
- src/dotnet: fix .targets file for .NET Framework 4.7
- src/dotnet: simplify exception string handling
- src/dotnet: update version to 0.8.0
This commit is contained in:
Syping 2025-11-10 17:58:06 +01:00
parent 3ea95bab44
commit c8cd8112f0
6 changed files with 73 additions and 50 deletions

View file

@ -1,16 +1,17 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.1;net47</TargetFrameworks>
<TargetFrameworks>netstandard2.1;net47;net8.0</TargetFrameworks>
<AssemblyName>RagePhoto.Core</AssemblyName>
<RootNamespace>RagePhoto</RootNamespace>
<Version>0.7.1</Version>
<AssemblyVersion>0.7.1</AssemblyVersion>
<FileVersion>0.7.1</FileVersion>
<Version>0.8.0</Version>
<AssemblyVersion>0.8.0</AssemblyVersion>
<FileVersion>0.8.0</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>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryUrl>https://github.com/Syping/libragephoto</RepositoryUrl>
<Nullable>disable</Nullable>
</PropertyGroup>
@ -20,16 +21,14 @@
</PropertyGroup>
<ItemGroup>
<NativeDlls Include="runtimes\**\libragephoto.*" />
<None Include="@(NativeDlls)" Pack="true" PackagePath="runtimes\%(RecursiveDir)%(Filename)%(Extension)">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="RagePhoto.Core.targets" Pack="true" PackagePath="build\net47\RagePhoto.Core.targets">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Include="RagePhoto.Core.targets" Pack="true" PackagePath="buildTransitive\net47\RagePhoto.Core.targets">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<SharedLibraries Include="runtimes\**\libragephoto.*" />
<None Include="@(SharedLibraries)" Pack="true" PackagePath="runtimes\%(RecursiveDir)%(Filename)%(Extension)" />
<None Include="net47\RagePhoto.Core.targets" Pack="true" PackagePath="build\net47\RagePhoto.Core.targets" />
<None Include="net47\RagePhoto.Core.targets" Pack="true" PackagePath="buildTransitive\net47\RagePhoto.Core.targets" />
</ItemGroup>
<ItemGroup>
<None Include="README.md" Pack="true" PackagePath="README.md" />
</ItemGroup>
</Project>