mirror of
https://github.com/microsoft/terminal.git
synced 2026-05-21 06:18:34 +00:00
Compare commits
1 Commits
v1.25.1322
...
dev/migrie
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
00f9bb8834 |
@@ -1,7 +1,12 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<Import Project="..\..\..\common.openconsole.props" Condition="'$(OpenConsoleDir)'==''" />
|
<Import Project="..\..\..\common.openconsole.props" Condition="'$(OpenConsoleDir)'==''" />
|
||||||
|
|
||||||
|
<PropertyGroup Label="NuGet Dependencies">
|
||||||
|
<TerminalMUX>true</TerminalMUX>
|
||||||
|
</PropertyGroup>
|
||||||
<Import Project="$(OpenConsoleDir)src\wap-common.build.pre.props" />
|
<Import Project="$(OpenConsoleDir)src\wap-common.build.pre.props" />
|
||||||
|
<Import Project="$(OpenConsoleDir)src\common.nugetversions.props" />
|
||||||
<PropertyGroup Label="Configuration">
|
<PropertyGroup Label="Configuration">
|
||||||
<!--
|
<!--
|
||||||
These two properties are very important!
|
These two properties are very important!
|
||||||
@@ -136,16 +141,6 @@
|
|||||||
<!-- **END VC LIBS HACK** -->
|
<!-- **END VC LIBS HACK** -->
|
||||||
|
|
||||||
<!-- This is required to get the package dependency in the AppXManifest. -->
|
<!-- This is required to get the package dependency in the AppXManifest. -->
|
||||||
<Import Project="..\..\..\packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets" Condition="Exists('..\..\..\packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets')" />
|
<Import Project="$(OpenConsoleDir)src\common.nugetversions.targets" />
|
||||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
|
||||||
<PropertyGroup>
|
|
||||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Error Condition="!Exists('..\..\..\packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets'))" />
|
|
||||||
</Target>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<Import Project="$(SolutionDir)build\rules\CollectWildcardResources.targets" />
|
<Import Project="$(SolutionDir)build\rules\CollectWildcardResources.targets" />
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
@@ -34,6 +34,7 @@ namespace winrt::SampleApp::implementation
|
|||||||
nullptr,
|
nullptr,
|
||||||
32,
|
32,
|
||||||
80,
|
80,
|
||||||
|
winrt::guid(),
|
||||||
winrt::guid()) };
|
winrt::guid()) };
|
||||||
|
|
||||||
// "Microsoft.Terminal.TerminalConnection.ConptyConnection"
|
// "Microsoft.Terminal.TerminalConnection.ConptyConnection"
|
||||||
|
|||||||
@@ -20,6 +20,7 @@
|
|||||||
|
|
||||||
<PropertyGroup Label="NuGet Dependencies">
|
<PropertyGroup Label="NuGet Dependencies">
|
||||||
<TerminalCppWinrt>true</TerminalCppWinrt>
|
<TerminalCppWinrt>true</TerminalCppWinrt>
|
||||||
|
<TerminalMUX>true</TerminalMUX>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="..\..\..\common.openconsole.props" Condition="'$(OpenConsoleDir)'==''" />
|
<Import Project="..\..\..\common.openconsole.props" Condition="'$(OpenConsoleDir)'==''" />
|
||||||
<Import Project="$(OpenConsoleDir)src\common.nugetversions.props" />
|
<Import Project="$(OpenConsoleDir)src\common.nugetversions.props" />
|
||||||
@@ -156,14 +157,6 @@
|
|||||||
<!-- This -must- go after cppwinrt.build.post.props because that includes many VS-provided props including appcontainer.common.props, which stomps on what cppwinrt.targets did. -->
|
<!-- This -must- go after cppwinrt.build.post.props because that includes many VS-provided props including appcontainer.common.props, which stomps on what cppwinrt.targets did. -->
|
||||||
<Import Project="$(OpenConsoleDir)src\common.nugetversions.targets" />
|
<Import Project="$(OpenConsoleDir)src\common.nugetversions.targets" />
|
||||||
|
|
||||||
<Import Project="$(OpenConsoleDir)packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets" Condition="Exists('$(OpenConsoleDir)packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets')" />
|
|
||||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
|
||||||
<PropertyGroup>
|
|
||||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Error Condition="!Exists('$(OpenConsoleDir)packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(OpenConsoleDir)\packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets'))" />
|
|
||||||
</Target>
|
|
||||||
|
|
||||||
<!--
|
<!--
|
||||||
By default, the PRI file will contain resource paths beginning with the
|
By default, the PRI file will contain resource paths beginning with the
|
||||||
project name. Since we enabled XBF embedding, this *also* includes App.xbf.
|
project name. Since we enabled XBF embedding, this *also* includes App.xbf.
|
||||||
|
|||||||
@@ -13,6 +13,7 @@
|
|||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Label="NuGet Dependencies">
|
<PropertyGroup Label="NuGet Dependencies">
|
||||||
<TerminalCppWinrt>true</TerminalCppWinrt>
|
<TerminalCppWinrt>true</TerminalCppWinrt>
|
||||||
|
<TerminalMUX>true</TerminalMUX>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<Import Project="..\..\..\..\common.openconsole.props" Condition="'$(OpenConsoleDir)'==''" />
|
<Import Project="..\..\..\..\common.openconsole.props" Condition="'$(OpenConsoleDir)'==''" />
|
||||||
<Import Project="$(OpenConsoleDir)src\common.nugetversions.props" />
|
<Import Project="$(OpenConsoleDir)src\common.nugetversions.props" />
|
||||||
@@ -90,14 +91,6 @@
|
|||||||
</Link>
|
</Link>
|
||||||
</ItemDefinitionGroup>
|
</ItemDefinitionGroup>
|
||||||
|
|
||||||
<Import Project="$(OpenConsoleDir)packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets" Condition="Exists('$(OpenConsoleDir)packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets')" />
|
|
||||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
|
||||||
<PropertyGroup>
|
|
||||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Error Condition="!Exists('$(OpenConsoleDir)\packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(OpenConsoleDir)\packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets'))" />
|
|
||||||
</Target>
|
|
||||||
|
|
||||||
<ItemDefinitionGroup>
|
<ItemDefinitionGroup>
|
||||||
<ClCompile>
|
<ClCompile>
|
||||||
<AdditionalIncludeDirectories>$(OpenConsoleDir)\dep\jsoncpp\json;%(AdditionalIncludeDirectories);</AdditionalIncludeDirectories>
|
<AdditionalIncludeDirectories>$(OpenConsoleDir)\dep\jsoncpp\json;%(AdditionalIncludeDirectories);</AdditionalIncludeDirectories>
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<packages>
|
<packages>
|
||||||
<package id="Microsoft.Toolkit.Win32.UI.XamlApplication" version="6.1.3" targetFramework="native" />
|
<package id="Microsoft.Toolkit.Win32.UI.XamlApplication" version="6.1.3" targetFramework="native" />
|
||||||
<package id="Microsoft.UI.Xaml" version="2.7.3" targetFramework="native" />
|
<package id="Microsoft.UI.Xaml" version="2.8.3" targetFramework="native" />
|
||||||
<package id="Microsoft.Windows.CppWinRT" version="2.0.230207.1" targetFramework="native" />
|
<package id="Microsoft.Windows.CppWinRT" version="2.0.230207.1" targetFramework="native" />
|
||||||
</packages>
|
</packages>
|
||||||
|
|||||||
@@ -18,6 +18,7 @@
|
|||||||
<PropertyGroup Label="NuGet Dependencies">
|
<PropertyGroup Label="NuGet Dependencies">
|
||||||
<TerminalCppWinrt>true</TerminalCppWinrt>
|
<TerminalCppWinrt>true</TerminalCppWinrt>
|
||||||
<TerminalThemeHelpers>true</TerminalThemeHelpers>
|
<TerminalThemeHelpers>true</TerminalThemeHelpers>
|
||||||
|
<TerminalMUX>true</TerminalMUX>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
|
|
||||||
<Import Project="..\..\..\common.openconsole.props" Condition="'$(OpenConsoleDir)'==''" />
|
<Import Project="..\..\..\common.openconsole.props" Condition="'$(OpenConsoleDir)'==''" />
|
||||||
@@ -142,14 +143,6 @@
|
|||||||
|
|
||||||
<Import Project="$(OpenConsoleDir)src\cppwinrt.build.post.props" />
|
<Import Project="$(OpenConsoleDir)src\cppwinrt.build.post.props" />
|
||||||
|
|
||||||
<Import Project="..\..\..\packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets" Condition="Exists('..\..\..\packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets')" />
|
|
||||||
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
|
|
||||||
<PropertyGroup>
|
|
||||||
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
|
|
||||||
</PropertyGroup>
|
|
||||||
<Error Condition="!Exists('..\..\..\packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\..\..\packages\Microsoft.UI.Xaml.2.7.3\build\native\Microsoft.UI.Xaml.targets'))" />
|
|
||||||
</Target>
|
|
||||||
|
|
||||||
<!-- Override GetPackagingOutputs to roll up all our dependencies.
|
<!-- Override GetPackagingOutputs to roll up all our dependencies.
|
||||||
This ensures that when the WAP packaging project asks what files go into
|
This ensures that when the WAP packaging project asks what files go into
|
||||||
the package, we tell it.
|
the package, we tell it.
|
||||||
|
|||||||
@@ -2,5 +2,5 @@
|
|||||||
<packages>
|
<packages>
|
||||||
<package id="Microsoft.Windows.CppWinRT" version="2.0.230207.1" targetFramework="native" />
|
<package id="Microsoft.Windows.CppWinRT" version="2.0.230207.1" targetFramework="native" />
|
||||||
<package id="Microsoft.Toolkit.Win32.UI.XamlApplication" version="6.1.3" targetFramework="native" />
|
<package id="Microsoft.Toolkit.Win32.UI.XamlApplication" version="6.1.3" targetFramework="native" />
|
||||||
<package id="Microsoft.UI.Xaml" version="2.7.3" targetFramework="native" />
|
<package id="Microsoft.UI.Xaml" version="2.8.3" targetFramework="native" />
|
||||||
</packages>
|
</packages>
|
||||||
|
|||||||
Reference in New Issue
Block a user