Skip to content

Commit 326ce14

Browse files
authored
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
1 parent f4371ff commit 326ce14

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

build/build.proj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@
3737
<OutputDirectory>Renci.SshNet\bin\$(Configuration)\net7.0</OutputDirectory>
3838
<Moniker>net7.0</Moniker>
3939
</TargetFrameworkModern>
40+
<TargetFrameworkModern Include=".NET 8.0">
41+
<OutputDirectory>Renci.SshNet\bin\$(Configuration)\net8.0</OutputDirectory>
42+
<Moniker>net8.0</Moniker>
43+
</TargetFrameworkModern>
4044
</ItemGroup>
4145

4246
<Target Name="CleanModern" DependsOnTargets="CleanSolutionModern">

build/nuget/SSH.NET.nuspec

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,11 @@
1616
<language>en-US</language>
1717
<tags>ssh scp sftp</tags>
1818
<dependencies>
19-
<group targetFramework="net462" />
19+
<group targetFramework="net462">
20+
<dependency id="Microsoft.Bcl.AsyncInterfaces" version="[7.0.0]" />
21+
</group>
2022
<group targetFramework="netstandard2.0">
23+
<dependency id="Microsoft.Bcl.AsyncInterfaces" version="[7.0.0]" />
2124
<dependency id="SshNet.Security.Cryptography" version="[1.3.0]" />
2225
</group>
2326
<group targetFramework="netstandard2.1">

0 commit comments

Comments
 (0)