Files
wx-win-agent/node-agent/WxAgent.Tray/WxAgent.Tray.csproj
T

29 lines
1.3 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net8.0-windows10.0.19041.0</TargetFramework>
<EnableWindowsTargeting>true</EnableWindowsTargeting>
<UseWindowsForms>true</UseWindowsForms>
<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.Tray</AssemblyName>
<ApplicationIcon>wxagent.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<Content Include="wxagent.ico" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="Always" ExcludeFromSingleFile="true" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\WxAgent.Host\WxAgent.Host.csproj" />
<ProjectReference Include="..\WxAgent.Service\WxAgent.Service.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="..\WxAgent.Service\wwwroot\**\*" Link="wwwroot\%(RecursiveDir)%(Filename)%(Extension)" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="Always" />
</ItemGroup>
</Project>