19 lines
638 B
XML
19 lines
638 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
<PublishAot>false</PublishAot>
|
|
<!-- todo: enable this once the app is aot compliant! -->
|
|
<OutputType Condition="'$(Configuration)' == 'Release'">WinExe</OutputType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Bin2Object\Bin2Object\Bin2Object.csproj" />
|
|
<ProjectReference Include="..\Il2CppInspector.Common\Il2CppInspector.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|