Skip to content

Commit

Permalink
Updated deps and packages to .NET 8
Browse files Browse the repository at this point in the history
  • Loading branch information
niemyjski committed Jan 5, 2024
1 parent 3fbee0d commit 51b69fd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceRoot}/test/Foundatio.AWS.Tests/bin/Debug/net6.0/Foundatio.AWS.Tests.dll",
"program": "${workspaceRoot}/test/Foundatio.AWS.Tests/bin/Debug/net8.0/Foundatio.AWS.Tests.dll",
"args": [],
"cwd": "${workspaceRoot}/test/Foundatio.AWS.Tests",
// For more information about the 'console' field, see https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md#console-terminal-window
Expand Down
2 changes: 1 addition & 1 deletion build/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<MinVerTagPrefix>v</MinVerTagPrefix>
<ReferenceFoundatioSource Condition="$(SolutionName.Contains('All')) Or !$(SolutionName.Contains('Foundatio'))">true</ReferenceFoundatioSource>

<Copyright>Copyright (c) 2023 Foundatio. All rights reserved.</Copyright>
<Copyright>Copyright (c) 2024 Foundatio. All rights reserved.</Copyright>
<Authors>FoundatioFx</Authors>
<NoWarn>$(NoWarn);CS1591</NoWarn>
<WarningsAsErrors>true</WarningsAsErrors>
Expand Down
13 changes: 7 additions & 6 deletions src/Foundatio.AWS/Foundatio.AWS.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\build\common.props" />
<PropertyGroup>
<PackageTags>$(PackageTags);Amazon;AWS;S3</PackageTags>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AWSSDK.CloudWatch" Version="3.7.301.13" />
<PackageReference Include="AWSSDK.S3" Version="3.7.305.4" />
<PackageReference Include="AWSSDK.SQS" Version="3.7.300.29" />
<PackageReference Include="Foundatio" Version="10.6.1" Condition="'$(ReferenceFoundatioSource)' == '' OR '$(ReferenceFoundatioSource)' == 'false'" />
<PackageReference Include="AWSSDK.CloudWatch" Version="3.7.301.14" />
<PackageReference Include="AWSSDK.S3" Version="3.7.305.5" />
<PackageReference Include="AWSSDK.SQS" Version="3.7.300.30" />

<PackageReference Include="Foundatio" Version="10.6.2-alpha.0.13" Condition="'$(ReferenceFoundatioSource)' == '' OR '$(ReferenceFoundatioSource)' == 'false'" />
<ProjectReference Include="..\..\..\Foundatio\src\Foundatio\Foundatio.csproj" Condition="'$(ReferenceFoundatioSource)' == 'true'" />
</ItemGroup>
</Project>
</Project>
6 changes: 3 additions & 3 deletions tests/Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<Import Project="..\build\common.props" />
<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
<TargetFrameworks>net8.0</TargetFrameworks>
<IsPackable>False</IsPackable>
<NoWarn>$(NoWarn);CS1591;NU1701</NoWarn>
</PropertyGroup>
Expand All @@ -11,7 +11,7 @@
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.6" />
<PackageReference Include="GitHubActionsTestLogger" Version="2.3.3" PrivateAssets="All" />

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

0 comments on commit 51b69fd

Please sign in to comment.