mirror of
https://github.com/HolographicHat/Yae.git
synced 2025-12-13 09:58:13 +08:00
51 lines
1.6 KiB
XML
51 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>preview</LangVersion>
|
|
<RootNamespace>Yae</RootNamespace>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<TargetFramework>net9.0-windows</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<PublishAot>true</PublishAot>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<InvariantGlobalization>true</InvariantGlobalization>
|
|
<OptimizationPreference>Speed</OptimizationPreference>
|
|
<IlcFoldIdenticalMethodBodies>true</IlcFoldIdenticalMethodBodies>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Elysia.Bootstrap" Version="1.0.14"/>
|
|
<PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.183">
|
|
<PrivateAssets>all</PrivateAssets>
|
|
</PackageReference>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<DirectPInvoke Include="NTDLL"/>
|
|
<DirectPInvoke Include="USER32"/>
|
|
<DirectPInvoke Include="KERNEL32"/>
|
|
<DirectPInvoke Include="libMinHook.x64"/>
|
|
<NativeLibrary Include="lib\libMinHook.x64.lib"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<LibraryEntrypoint Include="YaeMain"/>
|
|
<AssemblyAttribute Include="System.Runtime.CompilerServices.DisableRuntimeMarshallingAttribute"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Using Include="System.Diagnostics"/>
|
|
<Using Include="System.Diagnostics.CodeAnalysis"/>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Folder Include="obj\" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|