Skip to content

Commit 71bb4a3

Browse files
authored
Merge branch 'develop' into padding
2 parents 543b3f2 + 42d75bc commit 71bb4a3

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

src/Renci.SshNet/Renci.SshNet.csproj

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<AssemblyName>Renci.SshNet</AssemblyName>
55
<Product>SSH.NET</Product>
66
<AssemblyTitle>SSH.NET</AssemblyTitle>
7-
<TargetFrameworks>net462;netstandard2.0;netstandard2.1;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
7+
<TargetFrameworks>net462;netstandard2.0;netstandard2.1;net6.0;net8.0;net9.0</TargetFrameworks>
88
</PropertyGroup>
99

1010
<PropertyGroup>
@@ -18,19 +18,29 @@
1818
<PackageIcon>SS-NET-icon-h500.png</PackageIcon>
1919
<PackageReadmeFile>README.md</PackageReadmeFile>
2020
<PackageTags>ssh; scp; sftp</PackageTags>
21-
<PackageReleaseNotes>https://github.com/sshnet/SSH.NET/releases/tag/$(Version)</PackageReleaseNotes>
2221
<IncludeSymbols>True</IncludeSymbols>
2322
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2423
<NBGV_ThisAssemblyIncludesPackageVersion>true</NBGV_ThisAssemblyIncludesPackageVersion>
2524
<EmbedUntrackedSources>true</EmbedUntrackedSources>
2625
<PublishRepositoryUrl>true</PublishRepositoryUrl>
2726
</PropertyGroup>
2827

28+
<Target Name="SetVersionProperties" BeforeTargets="Build" DependsOnTargets="GetBuildVersion">
29+
<!-- For properties which depend on those set by NBGV -->
30+
<PropertyGroup>
31+
<PackageReleaseNotes>https://github.com/sshnet/SSH.NET/releases/tag/$(Version)</PackageReleaseNotes>
32+
</PropertyGroup>
33+
</Target>
34+
2935
<PropertyGroup Condition="'$(CI)' != ''">
3036
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
3137
</PropertyGroup>
3238

3339
<PropertyGroup Condition=" $([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0')) ">
40+
<IsTrimmable>true</IsTrimmable>
41+
</PropertyGroup>
42+
43+
<PropertyGroup Condition=" $([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0')) ">
3444
<IsAotCompatible>true</IsAotCompatible>
3545
</PropertyGroup>
3646

test/Renci.SshNet.IntegrationTests/Dockerfile.TestServer renamed to test/Renci.SshNet.IntegrationTests/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:latest
1+
FROM alpine:3.20
22

33
COPY --chown=root:root server/ssh /etc/ssh/
44
COPY --chown=root:root server/script /opt/sshnet

test/Renci.SshNet.IntegrationTests/TestsFixtures/InfrastructureFixture.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public async Task InitializeAsync()
4343
_sshServerImage = new ImageFromDockerfileBuilder()
4444
.WithName("renci-ssh-tests-server-image")
4545
.WithDockerfileDirectory(CommonDirectoryPath.GetSolutionDirectory(), Path.Combine("test", "Renci.SshNet.IntegrationTests"))
46-
.WithDockerfile("Dockerfile.TestServer")
46+
.WithDockerfile("Dockerfile")
4747
.WithDeleteIfExists(true)
4848
.WithLogger(containerLogger)
4949
.Build();

test/Renci.SshNet.Tests/Renci.SshNet.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFrameworks>net462;net6.0;net7.0;net8.0;net9.0</TargetFrameworks>
4+
<TargetFrameworks>net462;net6.0;net8.0;net9.0</TargetFrameworks>
55
</PropertyGroup>
66

77
<ItemGroup>

0 commit comments

Comments
 (0)