mirror of
https://github.com/microsoft/terminal.git
synced 2025-12-19 18:11:39 -05: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.
21 lines
661 B
XML
21 lines
661 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
<ItemGroup>
|
|
<ClCompile Include="..\TerminalRenderData.cpp" />
|
|
<ClCompile Include="..\TerminalSelection.cpp" />
|
|
<ClCompile Include="..\TerminalApi.cpp" />
|
|
<ClCompile Include="..\Terminal.cpp" />
|
|
<ClCompile Include="..\pch.cpp">
|
|
<PrecompiledHeader>Create</PrecompiledHeader>
|
|
</ClCompile>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ClInclude Include="..\ControlKeyStates.hpp" />
|
|
<ClInclude Include="..\pch.h" />
|
|
<ClInclude Include="..\Terminal.hpp" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|