forked from xiaochengzjc/CxShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCxShell.csproj
More file actions
62 lines (58 loc) · 3.03 KB
/
Copy pathCxShell.csproj
File metadata and controls
62 lines (58 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
<AssemblyName>CxShell</AssemblyName>
<RootNamespace>CxShell</RootNamespace>
<Product>CxShell</Product>
<Title>CxShell</Title>
<PackageId>CxShell</PackageId>
<Authors>xiaochengzjc</Authors>
<Copyright>Copyright 2026 xiaochengzjc</Copyright>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<RepositoryUrl>https://github.com/xiaochengzjc/CxShell</RepositoryUrl>
<ApplicationManifest>app.manifest</ApplicationManifest>
<ApplicationIcon>Assets\CxShellLogo.ico</ApplicationIcon>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
</PropertyGroup>
<ItemGroup>
<Compile Remove="AtomUI/**" />
<Compile Remove=".tmp/**" />
<Compile Remove=".buildcheck*/**" />
<Compile Remove="tools/**" />
<AvaloniaXaml Remove="AtomUI/**" />
<AvaloniaXaml Remove=".tmp/**" />
<AvaloniaXaml Remove=".buildcheck*/**" />
<AvaloniaXaml Remove="tools/**" />
<None Remove=".buildcheck*/**" />
<None Remove="tools/**" />
<Content Remove=".buildcheck*/**" />
<Content Remove="tools/**" />
<AvaloniaResource Include="Assets/**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="AtomUI.Desktop.Controls" Version="6.0.6" />
<PackageReference Include="AtomUI.Desktop.Controls.ColorPicker" Version="6.0.6" />
<PackageReference Include="AtomUI.Desktop.Controls.DataGrid" Version="6.0.6" />
<PackageReference Include="Avalonia.AvaloniaEdit" Version="12.0.0" />
<PackageReference Include="Avalonia.Desktop" Version="12.0.4" />
<PackageReference Include="Avalonia.Themes.Fluent" Version="12.0.4" />
<PackageReference Include="AvaloniaEdit.TextMate" Version="12.0.0" />
<PackageReference Include="FluentFTP" Version="54.2.0" />
<PackageReference Include="ReactiveUI.Avalonia" Version="12.0.3" />
<PackageReference Include="SSH.NET" Version="2024.2.0" />
<PackageReference Include="CommunityToolkit.Mvvm" Version="8.4.0" />
<PackageReference Include="SshNet.Agent" Version="2024.2.0.1" />
<PackageReference Include="System.IO.Ports" Version="10.0.9" />
<PackageReference Include="TextMateSharp.Grammars" Version="2.0.4" />
</ItemGroup>
<ItemGroup Condition="'$(RuntimeIdentifier)' == ''">
<None Include="runtimes/**/native/*" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup>
<ItemGroup Condition="'$(RuntimeIdentifier)' != ''">
<None Include="runtimes/$(RuntimeIdentifier)/native/*" CopyToOutputDirectory="PreserveNewest" CopyToPublishDirectory="PreserveNewest" />
</ItemGroup>
</Project>