Skip to content

Commit

Permalink
Updated package info
Browse files Browse the repository at this point in the history
  • Loading branch information
Timmoth committed Dec 24, 2023
1 parent a37333b commit 30ba53a
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/main-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:

- name: Run Stryker.NET
id: stryker
run: dotnet stryker --config-file "./stryker-config.json" --dashboard-api-key "${{ secrets.STRYKER_DASHBOARD_API_KEY }}" --output ${{ env.StrykerDirectory }} --project "DsaDotnet.csproj" --version "${{ github.sha }}"
run: |
cd Tests
dotnet stryker --config-file "./stryker-config.json" --dashboard-api-key "${{ secrets.STRYKER_DASHBOARD_API_KEY }}" --output ${{ env.StrykerDirectory }} --project "DsaDotnet.csproj" --version "${{ github.sha }}"
- uses: actions/upload-artifact@v3
with:
Expand Down
23 changes: 23 additions & 0 deletions DsaDotnet/DsaDotnet.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,29 @@
<LangVersion>preview</LangVersion>
</PropertyGroup>

<PropertyGroup>
<PackageId>DsaDotnet</PackageId>
<Title>Dsa Dotnet</Title>
<Company>Timmoth</Company>
<Authors>Tim Jones</Authors>
<Description>
A collection of dotnet data structures and algorithms
</Description>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageTags>DSA</PackageTags>
<Copyright>Tim Jones</Copyright>
<PackageProjectUrl>https://github.com/Timmoth/DsaDotnet</PackageProjectUrl>
<RepositoryUrl>https://github.com/Timmoth/DsaDotnet</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
<PublishRepositoryUrl>true</PublishRepositoryUrl>
<EmbedUntrackedSources>true</EmbedUntrackedSources>
<MinVerTagPrefix>v</MinVerTagPrefix>
<EnablePackageValidation>true</EnablePackageValidation>
<GenerateCompatibilitySuppressionFile>true</GenerateCompatibilitySuppressionFile>
<PackageValidationBaselineVersion>1.0.0</PackageValidationBaselineVersion>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<Optimize>true</Optimize>
<DebugType>none</DebugType>
Expand Down
File renamed without changes.

0 comments on commit 30ba53a

Please sign in to comment.