diff options
author | Matt Strapp <matt@mattstrapp.net> | 2024-08-06 17:09:58 -0500 |
---|---|---|
committer | Matt Strapp <matt@mattstrapp.net> | 2024-08-06 17:09:58 -0500 |
commit | ad86c450f2c98daeb01b950588a324c5b31ef696 (patch) | |
tree | d8556ee52be40957295ec4ada65e8d9d9eb0cd85 /src | |
parent | Add Badges (diff) | |
download | locusts-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 'src')
-rw-r--r-- | src/Locusts.cs | 2 | ||||
-rw-r--r-- | src/Locusts.csproj | 62 |
2 files changed, 33 insertions, 31 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 |