|
1 | | -<Project Sdk="Microsoft.NET.Sdk"> |
2 | | - <PropertyGroup> |
3 | | - <TargetFramework>net8.0-windows10.0.19041.0</TargetFramework> |
4 | | - <TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion> |
5 | | - <RootNamespace>EasyWindowsTerminalControl.WinUI</RootNamespace> |
6 | | - <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> |
7 | | - <UseWinUI>true</UseWinUI> |
8 | | - <Platforms>AnyCPU;x64</Platforms> |
9 | | - <Version>1.0.1-beta.1</Version> |
10 | | - <Description>High performance WinUI3 native terminal/shell control. For WPF version see EasyWindowsTerminalControl alt package. It features full 24-bit color support with ANSI/VT escape sequences (and colors), hardware / GPU accelerated rendering, mouse support, and true console interaction. Support for command shells and key sequences, user interaction and programatic control. See GH for more details.</Description> |
11 | | - </PropertyGroup> |
12 | | - <ItemGroup> |
13 | | - <AdditionalFiles Include="NativeMethods.txt" /> |
14 | | - </ItemGroup> |
15 | | - <ItemGroup> |
16 | | - <PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1742" /> |
17 | | - <PackageReference Include="Microsoft.WindowsAppSDK" Version="1.7.250310001" /> |
18 | | - </ItemGroup> |
19 | | - <ItemGroup> |
20 | | - <Compile Include="..\EasyWindowsTerminalControl\EasyTerminalControl.cs" Link="EasyTerminalControl.cs" /> |
21 | | - <Compile Include="..\EasyWindowsTerminalControl\Internals\Process.cs" Link="Internals\Process.cs" /> |
22 | | - <Compile Include="..\EasyWindowsTerminalControl\Internals\ProcessFactory.cs" Link="Internals\ProcessFactory.cs" /> |
23 | | - <Compile Include="..\EasyWindowsTerminalControl\Internals\PseudoConsole.cs" Link="Internals\PseudoConsole.cs" /> |
24 | | - <Compile Include="..\EasyWindowsTerminalControl\Internals\PseudoConsoleApi.cs" Link="Internals\PseudoConsoleApi.cs" /> |
25 | | - <Compile Include="..\EasyWindowsTerminalControl\Internals\PseudoConsolePipe.cs" Link="Internals\PseudoConsolePipe.cs" /> |
26 | | - <Compile Include="..\EasyWindowsTerminalControl\ReadDelimitedTermPTY.cs" Link="ReadDelimitedTermPTY.cs" /> |
27 | | - <Compile Include="..\EasyWindowsTerminalControl\TermPTY.cs" Link="TermPTY.cs" /> |
28 | | - </ItemGroup> |
29 | | - <!--<ItemGroup> |
30 | | - <None Include="..\TermExample\Microsoft.Terminal.Control.dll" Link="Microsoft.Terminal.Control.dll"> |
31 | | - <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory> |
32 | | - </None> |
33 | | - </ItemGroup>--> |
34 | | - <ItemGroup> |
| 1 | +<Project Sdk="Microsoft.NET.Sdk"> |
| 2 | + <PropertyGroup> |
| 3 | + <TargetFramework>net8.0-windows10.0.19041.0</TargetFramework> |
| 4 | + <TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion> |
| 5 | + <RootNamespace>EasyWindowsTerminalControl.WinUI</RootNamespace> |
| 6 | + <RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers> |
| 7 | + <UseWinUI>true</UseWinUI> |
| 8 | + <Platforms>AnyCPU;x64</Platforms> |
| 9 | + <Version>1.0.15-beta.1</Version> |
| 10 | + <Description>High performance WinUI3 native terminal/shell control. For WPF version see EasyWindowsTerminalControl alt package. It features full 24-bit color support with ANSI/VT escape sequences (and colors), hardware / GPU accelerated rendering, mouse support, and true console interaction. Support for command shells and key sequences, user interaction and programatic control. See GH for more details.</Description> |
| 11 | + <PackageReadmeFile>README.md</PackageReadmeFile> |
| 12 | + <Authors>MitchCapper</Authors> |
| 13 | + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> |
| 14 | + <PackageOutputPath>../Publish</PackageOutputPath> |
| 15 | + <PackageProjectUrl>https://github.com/MitchCapper/EasyWindowsTerminalControl</PackageProjectUrl> |
| 16 | + |
| 17 | + <!-- Include NuGet packaging settings --> |
| 18 | + <IncludeBuildOutput>true</IncludeBuildOutput> |
| 19 | + <NoWarn>$(NoWarn);NU5128</NoWarn> |
| 20 | + </PropertyGroup> |
| 21 | + |
| 22 | + <ItemGroup> |
| 23 | + <AdditionalFiles Include="NativeMethods.txt" /> |
| 24 | + <None Include="../README.md" Pack="true" PackagePath="\"/> |
| 25 | + </ItemGroup> |
| 26 | + <ItemGroup> |
| 27 | + <PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.1742" /> |
| 28 | + <PackageReference Include="Microsoft.WindowsAppSDK" Version="1.7.250310001" /> |
| 29 | + </ItemGroup> |
| 30 | + <ItemGroup> |
| 31 | + <Compile Include="..\EasyWindowsTerminalControl\EasyTerminalControl.cs" Link="EasyTerminalControl.cs" /> |
| 32 | + <Compile Include="..\EasyWindowsTerminalControl\Internals\Process.cs" Link="Internals\Process.cs" /> |
| 33 | + <Compile Include="..\EasyWindowsTerminalControl\Internals\ProcessFactory.cs" Link="Internals\ProcessFactory.cs" /> |
| 34 | + <Compile Include="..\EasyWindowsTerminalControl\Internals\PseudoConsole.cs" Link="Internals\PseudoConsole.cs" /> |
| 35 | + <Compile Include="..\EasyWindowsTerminalControl\Internals\PseudoConsoleApi.cs" Link="Internals\PseudoConsoleApi.cs" /> |
| 36 | + <Compile Include="..\EasyWindowsTerminalControl\Internals\PseudoConsolePipe.cs" Link="Internals\PseudoConsolePipe.cs" /> |
| 37 | + <Compile Include="..\EasyWindowsTerminalControl\ReadDelimitedTermPTY.cs" Link="ReadDelimitedTermPTY.cs" /> |
| 38 | + <Compile Include="..\EasyWindowsTerminalControl\TermPTY.cs" Link="TermPTY.cs" /> |
| 39 | + </ItemGroup> |
| 40 | + <ItemGroup> |
35 | 41 | <PackageReference Include="CI.Microsoft.Windows.Console.ConPTY" Version="1.22.250314001" /> |
36 | | - <PackageReference Include="CI.Microsoft.Terminal.WinUI3.Unofficial" Version="1.0.1-beta.1" PrivateAssets="None" /> |
37 | | - <PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.106"> |
38 | | - <PrivateAssets>all</PrivateAssets> |
39 | | - </PackageReference> |
40 | | - </ItemGroup> |
41 | | - <!--<ItemGroup> |
42 | | - <ProjectReference Include="..\Microsoft.Terminal.WinUI3\Microsoft.Terminal.WinUI3.csproj" /> |
43 | | - </ItemGroup>--> |
| 42 | + <PackageReference Include="CI.Microsoft.Terminal.WinUI3.Unofficial" Version="1.0.15-beta.1" /> |
| 43 | + <PackageReference Include="Microsoft.Windows.CsWin32" Version="0.3.106"> |
| 44 | + <PrivateAssets>all</PrivateAssets> |
| 45 | + </PackageReference> |
| 46 | + </ItemGroup> |
44 | 47 | </Project> |
0 commit comments