Skip to content

Merge back to development #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 9 commits into from
Jul 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion AlfredApiWrapper/AlfredApiWrapper.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,18 +5,20 @@
<ImplicitUsings>disable</ImplicitUsings>
<Nullable>disable</Nullable>
<PackageId>TagShelf.Alfred.ApiWrapper</PackageId>
<Version>0.2.0</Version>
<Version>0.3.0</Version>
<Authors>Raúl Roa (raul@tagshelf.com)</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>
<RepositoryType>git</RepositoryType>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageReleaseNotes>Introducing AccountDomain with webhook setup support. See https://github.com/tagshelfsrl/dotnet-alfred-api-wrapper/releases for more details.</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\"/>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="System.Net.Http" Version="4.3.4" />
</ItemGroup>
Expand Down
4 changes: 3 additions & 1 deletion AlfredApiWrapperTestApp/AlfredApiWrapperTestApp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="TagShelf.Alfred.ApiWrapper" Version="0.2.0" />
<PackageReference Include="TagShelf.Alfred.ApiWrapper" Version="[0.2.0,)" />
<None Include="../README.md" Pack="true" PackagePath=""/>
</ItemGroup>

</Project>