Skip to content

Commit

Permalink
docs(README,csproj): Added info for NuGet
Browse files Browse the repository at this point in the history
  • Loading branch information
ViMaSter committed Feb 27, 2023
1 parent cd09569 commit 647dfdf
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Service Scorecard Generator <br /> [![codecov](https://codecov.io/gh/ViMaSter/service-scorecard-generator/branch/main/graph/badge.svg?token=T7ESI3L6ZN)](https://codecov.io/gh/ViMaSter/service-scorecard-generator) [![Build (and Release)](https://github.com/ViMaSter/service-scorecard-generator/actions/workflows/build-and-release.yml/badge.svg)](https://github.com/ViMaSter/service-scorecard-generator/actions/workflows/build-and-release.yml)
# Service Scorecard Generator

[![codecov](https://codecov.io/gh/ViMaSter/service-scorecard-generator/branch/main/graph/badge.svg?token=T7ESI3L6ZN)](https://codecov.io/gh/ViMaSter/service-scorecard-generator) [![Build (and Release)](https://github.com/ViMaSter/service-scorecard-generator/actions/workflows/build-and-release.yml/badge.svg)](https://github.com/ViMaSter/service-scorecard-generator/actions/workflows/build-and-release.yml)

Service Scorecard Generator is a dotnet app that generates Azure Wiki-friendly markdown files with scores for dotnet projects.
![image](https://user-images.githubusercontent.com/1689033/218286805-7acdd1c5-e2be-4d69-92fb-8081f9e1d0a2.png)
Expand Down
35 changes: 35 additions & 0 deletions ScorecardGenerator/ScorecardGenerator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@
<Nullable>enable</Nullable>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<Version>1.1.0</Version>
<PackAsTool>true</PackAsTool>
<PackageOutputPath>./nupkg</PackageOutputPath>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>Generate Azure Wiki-friendly markdown files with scores for dotnet projects.</Description>
<PackageProjectUrl>https://github.com/ViMaSter/service-scorecard-generator</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/ViMaSter/service-scorecard-generator.git</RepositoryUrl>
<Authors>Vincent Mahnke ([email protected])</Authors>
<Copyright>(c) 2023 by Vincent Mahnke</Copyright>
<PackageTags>dotnet;csharp;azure-devops;markdown</PackageTags>
<PackageReleaseNotes>Check CHANGELOG.md</PackageReleaseNotes>
</PropertyGroup>

<ItemGroup>
Expand All @@ -25,5 +37,28 @@
<EmbeddedResource Include="Checks\PendingRenovateAzurePRs\README.md" />
<EmbeddedResource Include="Checks\ProperDockerfile\README.md" />
</ItemGroup>

<ItemGroup>
<None Include="..\LICENSE" Pack="true" PackagePath=""/>
<None Include="..\README.md" Pack="true" PackagePath=""/>
<Version>1.0.0</Version>
<PackAsTool>true</PackAsTool>
<PackageOutputPath>./nupkg</PackageOutputPath>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>Generate Azure Wiki-friendly markdown files with scores for dotnet projects.</Description>
<PackageProjectUrl>https://github.com/ViMaSter/service-scorecard-generator</PackageProjectUrl>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/ViMaSter/service-scorecard-generator.git</RepositoryUrl>
<Authors>Vincent Mahnke ([email protected])</Authors>
<Copyright>(c) 2023 by Vincent Mahnke</Copyright>
<PackageTags>dotnet;csharp;azure-devops;markdown</PackageTags>
<PackageReleaseNotes>Check CHANGELOG.md</PackageReleaseNotes>
</ItemGroup>

<ItemGroup>
<None Include="..\LICENSE" Pack="true" PackagePath=""/>
<None Include="..\README.md" Pack="true" PackagePath=""/>
</ItemGroup>

</Project>

0 comments on commit 647dfdf

Please sign in to comment.