43 lines
1.7 KiB
XML
43 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<!-- Plugins may require bass class library assemblies we're not using so disable trimming -->
|
|
<PublishTrimmed>false</PublishTrimmed>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
|
|
<Version>2023.1</Version>
|
|
<Company>LukeFZ, Noisy Cow Studios</Company>
|
|
<Product>Il2CppInspectorRedux Command-Line Edition</Product>
|
|
<Copyright>(c) 2023-2024 LukeFZ - https://github.com/LukeFZ, original (c) 2017-2021 Katy Coe - www.djkaty.com - www.github.com/djkaty</Copyright>
|
|
<PackageId>Il2CppInspectorRedux.CLI</PackageId>
|
|
<Authors>LukeFZ, Katy Coe</Authors>
|
|
<AssemblyName>Il2CppInspector</AssemblyName>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<TreatWarningsAsErrors>false</TreatWarningsAsErrors>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<DotNetCliToolReference Include="Microsoft.NETCore.Runtime.CoreCLR" Version="2.0.0" />
|
|
<DotNetCliToolReference Include="Microsoft.NETCore.DotNetHostPolicy" Version="2.0.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="CommandLineParser" Version="2.6.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Il2CppInspector.Common\Il2CppInspector.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|