mirror of
https://github.com/microsoft/terminal.git
synced 2026-07-19 07:25:21 +00:00
33 lines
1.2 KiB
XML
33 lines
1.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
<RuntimeFrameworkVersion>6.0.9</RuntimeFrameworkVersion>
|
|
<UseWPF>true</UseWPF>
|
|
<Platforms>AnyCPU;x64;x86;ARM64</Platforms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="$(SolutionDir)src\cascadia\PublicTerminalCore\PublicTerminalCore.vcxproj">
|
|
<ReferenceOutputAssembly>false</ReferenceOutputAssembly>
|
|
</ProjectReference>
|
|
<ProjectReference Include="$(SolutionDir)src\cascadia\WpfTerminalControl\WpfTerminalControl.csproj" />
|
|
</ItemGroup>
|
|
|
|
<PropertyGroup>
|
|
<UnreasonablePlatform>$(Platform)</UnreasonablePlatform>
|
|
<UnreasonablePlatform Condition="'$(UnreasonablePlatform)' == 'x86'">Win32</UnreasonablePlatform>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Content Include="$(SolutionDir)bin\$(UnreasonablePlatform)\$(Configuration)\PublicTerminalCore.dll">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
|
|
<!-- Install an empty one for CSPROJ projects as they don't PGO. -->
|
|
<Target Name="MergePGOCounts" />
|
|
|
|
</Project>
|