-
Notifications
You must be signed in to change notification settings - Fork 1
/
SSHMan.csproj
90 lines (80 loc) · 2.93 KB
/
SSHMan.csproj
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<UseWPF>true</UseWPF>
<ApplicationIcon>sshman2.ico</ApplicationIcon>
<StartupObject>SSHMan.App</StartupObject>
<Authors>SirJson</Authors>
<Company>SirJson</Company>
<Description>Quickly connect to your SSH server</Description>
<Version>1.2.1</Version>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageProjectUrl>https://github.com/SirJson/SSHMan</PackageProjectUrl>
<PackageIcon>sshman-icon.png</PackageIcon>
<RepositoryUrl>https://github.com/SirJson/SSHMan</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageTags>windows-terminal, ssh</PackageTags>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<Compile Remove="assets\**" />
<Compile Remove="SSHChild\**" />
<EmbeddedResource Remove="assets\**" />
<EmbeddedResource Remove="SSHChild\**" />
<None Remove="assets\**" />
<None Remove="SSHChild\**" />
<None Include="LICENSE">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<None Include="sshman-icon.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
<Page Remove="assets\**" />
<Page Remove="SSHChild\**" />
</ItemGroup>
<ItemGroup>
<None Remove="host.png" />
<None Remove="settings.png" />
<None Remove="sshman2.ico" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="MahApps.Metro" Version="2.0.0" />
<PackageReference Include="Microsoft.CodeAnalysis.FxCopAnalyzers" Version="3.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Serilog" Version="2.10.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.Debug" Version="1.0.1" />
<PackageReference Include="Serilog.Sinks.File" Version="5.0.0-dev-00880" />
</ItemGroup>
<ItemGroup>
<Resource Include="host.png" />
<Resource Include="settings.png" />
<Resource Include="sshman2.ico" />
</ItemGroup>
<ItemGroup>
<Compile Update="Scripts.Designer.cs">
<DesignTime>True</DesignTime>
<AutoGen>True</AutoGen>
<DependentUpon>Scripts.resx</DependentUpon>
</Compile>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="Scripts.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Scripts.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Update="sshchild.ps1">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>