Skip to content

Commit efddfee

Browse files
committed
dotnet 8
1 parent 27ce698 commit efddfee

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"request": "launch",
1111
"preLaunchTask": "build",
1212
// If you have changed target frameworks, make sure to update the program path.
13-
"program": "${workspaceRoot}/test/Foundatio.Storage.SshNet.Tests/bin/Debug/net6.0/Foundatio.Storage.SshNetStorage.SshNet.Tests.dll",
13+
"program": "${workspaceRoot}/test/Foundatio.Storage.SshNet.Tests/bin/Debug/net8.0/Foundatio.Storage.SshNetStorage.SshNet.Tests.dll",
1414
"args": [],
1515
"cwd": "${workspaceRoot}/test/Foundatio.Storage.SshNet.Tests",
1616
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window

build/common.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<MinVerTagPrefix>v</MinVerTagPrefix>
1212
<ReferenceFoundatioSource Condition="$(SolutionName.Contains('All')) Or !$(SolutionName.Contains('Foundatio'))">true</ReferenceFoundatioSource>
1313

14-
<Copyright>Copyright (c) 2023 Foundatio. All rights reserved.</Copyright>
14+
<Copyright>Copyright (c) 2024 Foundatio. All rights reserved.</Copyright>
1515
<Authors>FoundatioFx</Authors>
1616
<NoWarn>$(NoWarn);CS1591</NoWarn>
1717
<WarningsAsErrors>true</WarningsAsErrors>

src/Foundatio.Storage.SshNet/Foundatio.Storage.SshNet.csproj

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010

1111
<ItemGroup>
1212
<PackageReference Include="SSH.NET" Version="2023.0.1" />
13-
<PackageReference Include="Foundatio" Version="10.6.1" Condition="'$(ReferenceFoundatioSource)' == '' OR '$(ReferenceFoundatioSource)' == 'false'" />
13+
14+
<PackageReference Include="Foundatio" Version="10.6.2-alpha.0.13" Condition="'$(ReferenceFoundatioSource)' == '' OR '$(ReferenceFoundatioSource)' == 'false'" />
1415
<ProjectReference Include="..\..\..\Foundatio\src\Foundatio\Foundatio.csproj" Condition="'$(ReferenceFoundatioSource)' == 'true'" />
1516
</ItemGroup>
16-
</Project>
17+
</Project>

tests/Directory.Build.props

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project>
22
<Import Project="..\build\common.props" />
33
<PropertyGroup>
4-
<TargetFrameworks>net6.0</TargetFrameworks>
4+
<TargetFrameworks>net8.0</TargetFrameworks>
55
<IsPackable>False</IsPackable>
66
<NoWarn>$(NoWarn);CS1591;NU1701</NoWarn>
77
</PropertyGroup>
@@ -11,7 +11,7 @@
1111
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6" />
1212
<PackageReference Include="GitHubActionsTestLogger" Version="2.3.3" PrivateAssets="All" />
1313

14-
<PackageReference Include="Foundatio.TestHarness" Version="10.6.1" Condition="'$(ReferenceFoundatioSource)' == '' OR '$(ReferenceFoundatioSource)' == 'false'" />
14+
<PackageReference Include="Foundatio.TestHarness" Version="10.6.2-alpha.0.13" Condition="'$(ReferenceFoundatioSource)' == '' OR '$(ReferenceFoundatioSource)' == 'false'" />
1515
<ProjectReference Include="..\..\..\Foundatio\src\Foundatio.TestHarness\Foundatio.TestHarness.csproj" Condition="'$(ReferenceFoundatioSource)' == 'true'" />
1616
</ItemGroup>
17-
</Project>
17+
</Project>

0 commit comments

Comments
 (0)