diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-08-06 17:12:40 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-08-06 17:14:51 -0500 |
commit | 707fc9b207ce985ef2cd4cea83ae447c5f3bd645 (patch) | |
tree | 84ce41d46f23439fe7c8565b2c952c4ae808b806 | |
parent | Add more C# documentation and descriptions to the NuGet package (diff) | |
download | locusts-707fc9b207ce985ef2cd4cea83ae447c5f3bd645.tar locusts-707fc9b207ce985ef2cd4cea83ae447c5f3bd645.tar.gz locusts-707fc9b207ce985ef2cd4cea83ae447c5f3bd645.tar.bz2 locusts-707fc9b207ce985ef2cd4cea83ae447c5f3bd645.tar.lz locusts-707fc9b207ce985ef2cd4cea83ae447c5f3bd645.tar.xz locusts-707fc9b207ce985ef2cd4cea83ae447c5f3bd645.tar.zst locusts-707fc9b207ce985ef2cd4cea83ae447c5f3bd645.zip |
oops
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
-rw-r--r-- | src/Locusts.csproj | 2 | ||||
-rw-r--r-- | tests/Locusts.Testing.csproj | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Locusts.csproj b/src/Locusts.csproj index b160d32..29db272 100644 --- a/src/Locusts.csproj +++ b/src/Locusts.csproj @@ -5,7 +5,7 @@ </PropertyGroup> <PropertyGroup> - <TargetFramework>netstandard2.0</TargetFramework> + <TargetFramework>net8.0</TargetFramework> <LangVersion>latest</LangVersion> <IsPackable>true</IsPackable> <IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">true</IsTrimmable> diff --git a/tests/Locusts.Testing.csproj b/tests/Locusts.Testing.csproj index 3af0cf6..d5d99ce 100644 --- a/tests/Locusts.Testing.csproj +++ b/tests/Locusts.Testing.csproj @@ -1,7 +1,7 @@ <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
- <TargetFramework>netstandard2.0</TargetFramework>
+ <TargetFramework>net8.0</TargetFramework>
<LangVersion>latest</LangVersion>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
|