Files
time-mocker-csharp/TimeMocker.UI/TimeMocker.UI.csproj
T
2026-02-25 17:59:24 +07:00

21 lines
799 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net48</TargetFramework>
<Platforms>x64</Platforms>
<OutputType>WinExe</OutputType>
<AssemblyName>TimeMocker</AssemblyName>
<RootNamespace>TimeMocker.UI</RootNamespace>
<UseWindowsForms>true</UseWindowsForms>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>8</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="EasyHook" Version="2.7.7097.0"/>
<PackageReference Include="System.Text.Json" Version="8.0.5"/>
</ItemGroup>
<ItemGroup>
<!-- Ensure the hook DLL is always next to the UI exe -->
<ProjectReference Include="..\TimeMocker.Hook\TimeMocker.Hook.csproj"/>
</ItemGroup>
</Project>