mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-10 00:48:23 -06:00
While working on another PR related to this I noticed that my VS generates `.vcxproj` files that are a bit different to the ones we have. This commit is a quick search & replace of all our project files to make (primarily) their `ToolsVersion` more in line with what VS does itself: No `ToolsVersion` for `.vcxproj`, `ToolsVersion="15.0"` for `.csproj` and `ToolsVersion="4.0"` for `.filters` files.
32 lines
1.4 KiB
XML
32 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<!--
|
|
This props file is a workaround for the fact that for wapproj projects,
|
|
the $(SolutionDir) is never evaluated correctly. So, instead we're using this
|
|
file to define $(OpenConsoleDir), which should be used in place of $(SolutionDir)
|
|
-->
|
|
<PropertyGroup Condition="'$(OpenConsoleDir)'==''">
|
|
<OpenConsoleDir>$(MSBuildThisFileDirectory)</OpenConsoleDir>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup>
|
|
<!--
|
|
For the Windows 10 build, we're targeting the prerelease version of Microsoft.UI.Xaml.
|
|
This version emits every XAML DLL directly into our package.
|
|
This is a workaround for us not having deliverable MSFT-21242953 on this version of Windows.
|
|
|
|
This version should be tracked in all project packages.config files for projects that depend on Xaml.
|
|
-->
|
|
<TerminalMUXVersion>2.7.2-prerelease.220406002</TerminalMUXVersion>
|
|
<!--
|
|
For the Windows 11-specific build, we're targeting the public version of Microsoft.UI.Xaml.
|
|
This version emits a package dependency instead of embedding the dependency in our own package.
|
|
|
|
This version should be tracked in build/packages.config.
|
|
-->
|
|
<TerminalMUXVersion Condition="'$(TerminalTargetWindowsVersion)'=='Win11'">2.7.1</TerminalMUXVersion>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|