Skip to content

Commit

Permalink
chore: Prepare for NuGet packaging
Browse files Browse the repository at this point in the history
Updated the .csproj file with essential metadata for NuGet packaging, including PackageId, Version, Authors, Company, Description, PackageTags, RepositoryUrl, and PackageLicenseExpression. This update lays the groundwork for the initial release of TagShelf.Alfred.ApiWrapper on NuGet.org, ensuring the package is equipped with all necessary information for consumers.
  • Loading branch information
rroa committed Feb 5, 2024
1 parent 276d362 commit f82d28a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions AlfredApiWrapper/AlfredApiWrapper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@
<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<PackageId>TagShelf.Alfred.ApiWrapper</PackageId>
<Version>0.1.0</Version>
<Authors>Raúl Roa ([email protected])</Authors>
<Company>Tagshelf</Company>
<Description>A comprehensive .NET library designed to facilitate seamless interactions with the Alfred API.</Description>
<PackageTags>Alfred;API;Wrapper;.NET</PackageTags>
<RepositoryUrl>https://github.com/tagshelfsrl/dotnet-alfred-api-wrapper</RepositoryUrl>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReleaseNotes>Initial release of TagShelf.Alfred.ApiWrapper, supporting comprehensive authentication, domain-specific operations, and cross-platform compatibility.</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit f82d28a

Please sign in to comment.