diff options
-rw-r--r-- | src/Locusts.cs | 2 | ||||
-rw-r--r-- | src/Locusts.csproj | 62 | ||||
-rw-r--r-- | tests/Locusts.Testing.csproj | 33 |
3 files changed, 50 insertions, 47 deletions
diff --git a/src/Locusts.cs b/src/Locusts.cs index 1082c60..43f758d 100644 --- a/src/Locusts.cs +++ b/src/Locusts.cs @@ -10,6 +10,8 @@ public static class Locusts /// </summary>
/// <remarks>
/// This method will introduce locusts into your codebase.
+ ///
+ /// Locusts are not included with this library, you must provide your own.
/// </remarks>
public static void IntroduceLocusts()
{
diff --git a/src/Locusts.csproj b/src/Locusts.csproj index f646597..b160d32 100644 --- a/src/Locusts.csproj +++ b/src/Locusts.csproj @@ -1,37 +1,37 @@ <Project Sdk="Microsoft.NET.Sdk"> - <PropertyGroup Condition="'$(CI)' == 'true'"> - <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> - </PropertyGroup> + <PropertyGroup Condition="'$(CI)' == 'true'"> + <ContinuousIntegrationBuild>true</ContinuousIntegrationBuild> + </PropertyGroup> - <PropertyGroup> - <TargetFramework>netstandard2.0</TargetFramework> - <LangVersion>latest</LangVersion> - <IsPackable>true</IsPackable> - <IsTrimmable - Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">true</IsTrimmable> - <IsAotCompatible - Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">true</IsAotCompatible> - <ImplicitUsings>enable</ImplicitUsings> - <Nullable>enable</Nullable> + <PropertyGroup> + <TargetFramework>netstandard2.0</TargetFramework> + <LangVersion>latest</LangVersion> + <IsPackable>true</IsPackable> + <IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">true</IsTrimmable> + <IsAotCompatible Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net7.0'))">true</IsAotCompatible> + <ImplicitUsings>enable</ImplicitUsings> + <Nullable>enable</Nullable> - <GeneratePackageOnBuild>true</GeneratePackageOnBuild> - <PackageLicenseExpression>0BSD</PackageLicenseExpression> - <PackageReadmeFile>docs/.NET.md</PackageReadmeFile> - <RepositoryURL>https://github.com/locusts-r-us/locusts</RepositoryURL> - <RepositoryType>git</RepositoryType> - <GenerateDocumentationFile>True</GenerateDocumentationFile> - <IncludeSymbols>True</IncludeSymbols> - <SymbolPackageFormat>snupkg</SymbolPackageFormat> - <EmbedUntrackedSources>true</EmbedUntrackedSources> - </PropertyGroup> + <GeneratePackageOnBuild>true</GeneratePackageOnBuild> + <PackageLicenseExpression>0BSD</PackageLicenseExpression> + <PackageReadmeFile>docs/.NET.md</PackageReadmeFile> + <RepositoryURL>https://github.com/locusts-r-us/locusts</RepositoryURL> + <RepositoryType>git</RepositoryType> + <GenerateDocumentationFile>True</GenerateDocumentationFile> + <IncludeSymbols>True</IncludeSymbols> + <SymbolPackageFormat>snupkg</SymbolPackageFormat> + <EmbedUntrackedSources>true</EmbedUntrackedSources> + <Title>Locusts</Title> + <Description>A .NET library that introduces locusts into your codebase.</Description> + </PropertyGroup> - <ItemGroup> - <None Include="../docs/.NET.md" Pack="true" PackagePath="docs" /> - <PackageReference Include="Microsoft.SourceLink.GitHub" Version="*-*" PrivateAssets="all" /> - <PackageReference Include="MinVer" Version="*-*"> - <PrivateAssets>all</PrivateAssets> - <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> - </PackageReference> - </ItemGroup> + <ItemGroup> + <None Include="..\docs\.NET.md" Pack="true" PackagePath="docs" /> + <PackageReference Include="Microsoft.SourceLink.GitHub" Version="*-*" PrivateAssets="all" /> + <PackageReference Include="MinVer" Version="*-*"> + <PrivateAssets>all</PrivateAssets> + <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> + </PackageReference> + </ItemGroup> </Project>
\ No newline at end of file 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>
|