Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Commit

Permalink
including readme in package, added SourceLink
Browse files Browse the repository at this point in the history
  • Loading branch information
ahwm authored Jun 3, 2022
1 parent 53070dd commit 7c12296
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 2 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: release
on:
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
jobs:
build:
runs-on: windows-latest
timeout-minutes: 15
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: dotnet build src\FishbowlConnector.sln --configuration Release
- name: Publish
run: nuget push **\*.nupkg -Source 'https://api.nuget.org/v3/index.json' -ApiKey ${{secrets.NUGET_API_KEY}}
13 changes: 11 additions & 2 deletions src/FishbowlConnector/FishbowlConnector.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,31 @@
<PropertyGroup>
<TargetFrameworks>net472;netstandard2.0</TargetFrameworks>
<Authors>Adam Humpherys, Manwaring Web Solutions</Authors>
<Version>1.0.0</Version>
<Version>1.1.0</Version>
<PackageId>FishbowlConnector.Net.Json</PackageId>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<RepositoryUrl>https://github.com/manwaring-web-solutions/Fishbowl-Connector-Net</RepositoryUrl>
<AssemblyVersion>1.0.0.0</AssemblyVersion>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<Copyright>© 2019 Manwaring Web Solutions</Copyright>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<AllowedOutputExtensionsInPackageBuildOutputFolder>
$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb
</AllowedOutputExtensionsInPackageBuildOutputFolder>
<Description>Package for interacting with the Fishbowl Connector API from a .NET project using JSON.</Description>
<PackageReleaseNotes>Initial release</PackageReleaseNotes>
<PackageReleaseNotes>Fixed issue with authentication since Fishbowl's system broke it, updated frameworks and dependency</PackageReleaseNotes>
<PackageProjectUrl>https://manwaring-web-solutions.github.io/Fishbowl-Connector-Net/</PackageProjectUrl>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.1.1">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
<PackageReference Include="LumenWorksCsvReader2" Version="4.3.0" />
<None Include="..\..\README.md" Pack="true" PackagePath="\"/>
</ItemGroup>
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
<PackageReference Include="Microsoft.CSharp" Version="4.6.0" />
Expand Down

0 comments on commit 7c12296

Please sign in to comment.