aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMatt Strapp <matt@mattstrapp.net>2024-08-06 17:09:58 -0500
committerMatt Strapp <matt@mattstrapp.net>2024-08-06 17:09:58 -0500
commitad86c450f2c98daeb01b950588a324c5b31ef696 (patch)
treed8556ee52be40957295ec4ada65e8d9d9eb0cd85 /tests
parentAdd Badges (diff)
downloadlocusts-ad86c450f2c98daeb01b950588a324c5b31ef696.tar
locusts-ad86c450f2c98daeb01b950588a324c5b31ef696.tar.gz
locusts-ad86c450f2c98daeb01b950588a324c5b31ef696.tar.bz2
locusts-ad86c450f2c98daeb01b950588a324c5b31ef696.tar.lz
locusts-ad86c450f2c98daeb01b950588a324c5b31ef696.tar.xz
locusts-ad86c450f2c98daeb01b950588a324c5b31ef696.tar.zst
locusts-ad86c450f2c98daeb01b950588a324c5b31ef696.zip
Add more C# documentation and descriptions to the NuGet package
Signed-off-by: Matt Strapp <matt@mattstrapp.net>
Diffstat (limited to 'tests')
-rw-r--r--tests/Locusts.Testing.csproj33
1 files changed, 17 insertions, 16 deletions
diff --git a/tests/Locusts.Testing.csproj b/tests/Locusts.Testing.csproj
index fc77ecf..3af0cf6 100644
--- a/tests/Locusts.Testing.csproj
+++ b/tests/Locusts.Testing.csproj
@@ -1,22 +1,23 @@
<Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>enable</Nullable>
+ <PropertyGroup>
+ <TargetFramework>netstandard2.0</TargetFramework>
+ <LangVersion>latest</LangVersion>
+ <ImplicitUsings>enable</ImplicitUsings>
+ <Nullable>enable</Nullable>
- <IsPackable>false</IsPackable>
- <IsTestProject>true</IsTestProject>
- </PropertyGroup>
+ <IsPackable>false</IsPackable>
+ <IsTestProject>true</IsTestProject>
+ </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.NET.Test.Sdk" Version="*-*" />
- <PackageReference Include="MSTest.TestAdapter" Version="*-*" />
- <PackageReference Include="MSTest.TestFramework" Version="*-*" />
- <PackageReference Include="coverlet.collector" Version="*-*" />
- </ItemGroup>
+ <ItemGroup>
+ <PackageReference Include="Microsoft.NET.Test.Sdk" Version="*-*" />
+ <PackageReference Include="MSTest.TestAdapter" Version="*-*" />
+ <PackageReference Include="MSTest.TestFramework" Version="*-*" />
+ <PackageReference Include="coverlet.collector" Version="*-*" />
+ </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\src\Locusts.csproj" />
- </ItemGroup>
+ <ItemGroup>
+ <ProjectReference Include="..\src\Locusts.csproj" />
+ </ItemGroup>
</Project>