Maintain current build solution (#1268)

* Add .NET 8.0 to current build project.
Add dependency **Microsoft.Bcl.AsyncInterfaces** for net462 and netstandard2.0 for current nuget spec

* Remove last new line

* Tabify
This commit is contained in:
Scott Xu
2023-12-15 23:54:57 +08:00
committed by GitHub
parent f4371ffccc
commit 326ce14c4c
2 changed files with 8 additions and 1 deletions
+4
View File
@@ -37,6 +37,10 @@
<OutputDirectory>Renci.SshNet\bin\$(Configuration)\net7.0</OutputDirectory>
<Moniker>net7.0</Moniker>
</TargetFrameworkModern>
<TargetFrameworkModern Include=".NET 8.0">
<OutputDirectory>Renci.SshNet\bin\$(Configuration)\net8.0</OutputDirectory>
<Moniker>net8.0</Moniker>
</TargetFrameworkModern>
</ItemGroup>
<Target Name="CleanModern" DependsOnTargets="CleanSolutionModern">
+4 -1
View File
@@ -16,8 +16,11 @@
<language>en-US</language>
<tags>ssh scp sftp</tags>
<dependencies>
<group targetFramework="net462" />
<group targetFramework="net462">
<dependency id="Microsoft.Bcl.AsyncInterfaces" version="[7.0.0]" />
</group>
<group targetFramework="netstandard2.0">
<dependency id="Microsoft.Bcl.AsyncInterfaces" version="[7.0.0]" />
<dependency id="SshNet.Security.Cryptography" version="[1.3.0]" />
</group>
<group targetFramework="netstandard2.1">