21 lines
853 B
XML
21 lines
853 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
|
|
<EnableWindowsTargeting>true</EnableWindowsTargeting>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<SelfContained>true</SelfContained>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
|
<PublishTrimmed>false</PublishTrimmed>
|
|
<AssemblyName>WxAgent.Host</AssemblyName>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\WxAgent.Windows\WxAgent.Windows.csproj" />
|
|
<ProjectReference Include="..\WxAgent.Service\WxAgent.Service.csproj" />
|
|
</ItemGroup>
|
|
</Project>
|