Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 4 additions & 6 deletions .github/workflows/cicd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,9 @@ on:
jobs:
all:
name: Build & Tests
uses: dailydevops/pipelines/.github/workflows/cicd-dotnet.yml@0.14.110
uses: dailydevops/pipelines/.github/workflows/build-dotnet-single.yml@1.2.5
with:
enableSonarQube: true
dotnet-logging: ${{ inputs.dotnet-logging }}
dotnet-quality: ga
dotnet-version: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
solution: ./Arguments.sln
dotnetLogging: ${{ inputs.dotnet-logging }}
dotnetVersion: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
solution: ./Arguments.slnx
secrets: inherit
23 changes: 23 additions & 0 deletions .github/workflows/publish-nuget.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: NuGet Package

on:
workflow_run:
workflows: [CI]
types: [completed]
branches: [main]

permissions:
actions: read
contents: write

jobs:
nuget:
name: Publish
if: ${{ github.event.workflow_run.conclusion == 'success' && github.actor != 'dependabot[bot]' }}
uses: dailydevops/pipelines/.github/workflows/publish-nuget.yml@1.2.5
with:
workflowName: ${{ github.event.workflow_run.name }}
artifactPattern: release-packages-*
environment: NuGet
runId: ${{ github.event.workflow_run.id }}
secrets: inherit
54 changes: 0 additions & 54 deletions Arguments.sln

This file was deleted.

24 changes: 24 additions & 0 deletions Arguments.slnx
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<Solution>
<Folder Name="/Solution Items/">
<File Path=".csharpierignore" />
<File Path=".editorconfig" />
<File Path=".filenesting.json" />
<File Path=".gitignore" />
<File Path=".gitmodules" />
<File Path="Directory.Build.props" />
<File Path="Directory.Packages.props" />
<File Path="Directory.Solution.props" />
<File Path="GitVersion.yml" />
<File Path="LICENSE" />
<File Path="new-project.ps1" />
<File Path="nuget.config" />
<File Path="README.md" />
<File Path="update-solution.ps1" />
</Folder>
<Folder Name="/src/">
<Project Path="src/NetEvolve.Arguments/NetEvolve.Arguments.csproj" />
</Folder>
<Folder Name="/tests/">
<Project Path="tests/NetEvolve.Arguments.Tests.Unit/NetEvolve.Arguments.Tests.Unit.csproj" />
</Folder>
</Solution>
6 changes: 1 addition & 5 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,7 @@
<GlobalPackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.13.61" />
<GlobalPackageReference Include="NetEvolve.Defaults" Version="1.3.86" />
<GlobalPackageReference Include="Roslynator.Analyzers" Version="4.13.1" />
<GlobalPackageReference
Include="SonarAnalyzer.CSharp"
Version="10.6.0.109712"
Condition=" '$(BuildingInsideVisualStudio)' == 'true' "
/>
<GlobalPackageReference Include="SonarAnalyzer.CSharp" Version="10.6.0.109712" />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="coverlet.collector" Version="6.0.4" />
Expand Down