Skip to content

Commit

Permalink
adding NuGet logo and README support (#5183)
Browse files Browse the repository at this point in the history
* adding NuGet logo and README support

* fixed MSBuild variables

* fixed version
  • Loading branch information
Aaronontheweb authored Nov 10, 2021
1 parent 9c06864 commit 7ba59b4
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/common.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
<Copyright>Copyright © 2013-2021 Akka.NET Team</Copyright>
<Authors>Akka.NET Team</Authors>
<VersionPrefix>1.4.28</VersionPrefix>
<PackageIconUrl>https://getakka.net/images/akkalogo.png</PackageIconUrl>
<PackageIcon>akkalogo.png</PackageIcon>
<PackageProjectUrl>https://github.com/akkadotnet/akka.net</PackageProjectUrl>
<PackageLicenseUrl>https://github.com/akkadotnet/akka.net/blob/master/LICENSE</PackageLicenseUrl>
<NoWarn>$(NoWarn);CS1591;xUnit1013</NoWarn>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>
<PropertyGroup>
<XunitVersion>2.4.1</XunitVersion>
Expand Down Expand Up @@ -37,6 +38,10 @@
<ItemGroup>
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<None Include="$(MSBuildThisFileDirectory)\..\docs\images\akkalogo.png" Pack="true" Visible="false" PackagePath="\" />
<None Include="$(MSBuildThisFileDirectory)\..\README.md" Pack="true" Visible="false" PackagePath="\" />
</ItemGroup>
<PropertyGroup>
<!--<PublishRepositoryUrl>true</PublishRepositoryUrl>-->
<RepositoryUrl>https://github.com/akkadotnet/akka.net</RepositoryUrl>
Expand All @@ -46,4 +51,8 @@
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
</PropertyGroup>
</Project>
<Target Name="TestValue" AfterTargets="build">
<Message Text="@(none)">
</Message>
</Target>
</Project>

0 comments on commit 7ba59b4

Please sign in to comment.