mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2026-03-22 08:28:40 +05:00
this is done now to reduce the migration burden in the future when this is made into a nuget package (hopefully)
33 lines
1.3 KiB
XML
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>
|