Skip to content

Commit

Permalink
fix build + add icon
Browse files Browse the repository at this point in the history
  • Loading branch information
leastprivilege committed Oct 18, 2019
1 parent 7b80a71 commit 3561342
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ static void Main(string[] args)
{
var project = Directory.GetFiles("./src", "*.csproj", SearchOption.TopDirectoryOnly).First();
Run("dotnet", $"pack {project} -c Release -o ../{ArtifactsDir} --no-build");
Run("dotnet", $"pack {project} -c Release -o ./{ArtifactsDir} --no-build");
if (sign.HasValue())
{
Expand Down
Binary file added icon.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
7 changes: 5 additions & 2 deletions src/IdentityModel.OidcClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@
<AssemblyName>IdentityModel.OidcClient</AssemblyName>
<PackageId>IdentityModel.OidcClient</PackageId>
<PackageTags>OAuth2;OAuth 2.0;OpenID Connect;Security;Identity;IdentityServer</PackageTags>
<PackageIconUrl>https://identityserver.github.io/Documentation/assets/images/icons/IDmodel_icon128.png</PackageIconUrl>
<PackageIcon>icon.jpg</PackageIcon>
<PackageProjectUrl>https://github.com/IdentityModel/IdentityModel.OidcClient2</PackageProjectUrl>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<LangVersion>latest</LangVersion>

<!-- Declare that the Repository URL can be published to NuSpec -->
<PublishRepositoryUrl>true</PublishRepositoryUrl>
Expand All @@ -30,6 +29,10 @@
<PublicSign Condition="'$(OS)' != 'Windows_NT'">true</PublicSign>
</PropertyGroup>

<ItemGroup>
<None Include="../icon.jpg" Pack="true" Visible="false" PackagePath="" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="IdentityModel" Version="4.0.0" />
<PackageReference Include="minver" Version="2.0.0" PrivateAssets="All" />
Expand Down

0 comments on commit 3561342

Please sign in to comment.