mirror of
https://github.com/tiennm99/time-mocker-csharp.git
synced 2026-06-06 20:14:00 +00:00
21 lines
799 B
XML
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>
|