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.
17 lines
697 B
XML
17 lines
697 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
|
|
<metadata>
|
|
<id>Microsoft.Internal.Windows.Terminal.PGODatabase</id>
|
|
<version>0</version>
|
|
<title>Windows Terminal PGO Database</title>
|
|
<authors>Microsoft</authors>
|
|
<owners>Microsoft</owners>
|
|
<requireLicenseAcceptance>false</requireLicenseAcceptance>
|
|
<description>Windows Terminal PGO Database</description>
|
|
</metadata>
|
|
<files>
|
|
<!-- The target directories for pgd files need to remain as is. PGO optimization pass will rely on this exact directory layout. -->
|
|
<file src="x64\*.pgd" target="tools\x64"/>
|
|
</files>
|
|
</package>
|