Files
Il2CppInspectorRedux/VersionedSerialization/VersionedSerialization.csproj
LukeFZ 20f90a0926 vendor in newer version of VersionedSerialization
this is done now to reduce the migration burden in the future when this is made into a nuget package (hopefully)
2026-03-13 17:34:07 +01:00

33 lines
1.3 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<LangVersion>preview</LangVersion>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Authors>LukeFZ</Authors>
<Description>Library and source generator to allow fast reading of structs with version-specific layouts.</Description>
<Copyright></Copyright>
<PackageProjectUrl>https://github.com/LukeFZ/VersionedSerialization</PackageProjectUrl>
<RepositoryUrl>https://github.com/LukeFZ/VersionedSerialization</RepositoryUrl>
<RepositoryType></RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<VersionPrefix>0.0.12</VersionPrefix>
<IsAotCompatible>True</IsAotCompatible>
</PropertyGroup>
<ItemGroup>
<None Include="$(OutputPath)\VersionedSerialization.Generator.dll" Pack="true" PackagePath="analyzers/dotnet/cs" Visible="false" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VersionedSerialization.Generator\VersionedSerialization.Generator.csproj" Pack="false">
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
<OutputItemType>Content</OutputItemType>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</ProjectReference>
</ItemGroup>
</Project>