|
3 | 3 | <PropertyGroup> |
4 | 4 | <OutputType>Exe</OutputType> |
5 | 5 | <TargetFramework>netcoreapp2.1</TargetFramework> |
| 6 | + <IsPackable>true</IsPackable> |
| 7 | + <PackAsTool>true</PackAsTool> |
6 | 8 | <AssemblyName>dotnet-sshdeploy</AssemblyName> |
7 | 9 | <PackageId>dotnet-sshdeploy</PackageId> |
8 | | - <Version>0.2.0</Version> |
9 | | - <PackageVersion>0.2.0</PackageVersion> |
| 10 | + <Version>0.3.0</Version> |
| 11 | + <PackageVersion>0.3.0</PackageVersion> |
10 | 12 | <Authors>Unosquare</Authors> |
11 | 13 | <Description>A command-line tool that enables quick deployments over SSH. This is program was specifically designed to streamline .NET application development for the Raspberry Pi running Raspbian.</Description> |
12 | 14 |
|
13 | 15 | <CodeAnalysisRuleSet>..\StyleCop.Analyzers.ruleset</CodeAnalysisRuleSet> |
14 | | - |
15 | | - <PackageType>DotnetCliTool</PackageType> |
16 | | - <PackageTags>dotnet cli tool</PackageTags> |
17 | | - <GeneratePackageOnBuild>True</GeneratePackageOnBuild> |
18 | 16 | </PropertyGroup> |
19 | 17 |
|
20 | 18 | <ItemGroup> |
21 | 19 | <PackageReferenceInclude="SSH.NET"Version="2016.1.0" /> |
22 | 20 | <PackageReferenceInclude="System.IO.FileSystem.Watcher"Version="4.3.0" /> |
23 | | - <PackageReferenceInclude="Unosquare.Swan"Version="0.28.0" /> |
| 21 | + <PackageReferenceInclude="Unosquare.Swan"Version="0.30.0" /> |
24 | 22 | <PackageReferenceInclude="StyleCop.Analyzers"Version="1.0.2"> |
25 | 23 | <PrivateAssets>All</PrivateAssets> |
26 | 24 | </PackageReference> |
|