Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

StackOverflow Point

StackOverflow Point Navigation

  • Web Stories
  • Badges
  • Tags
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Web Stories
  • Badges
  • Tags
Home/ Questions/Q 186055
Alex Hales
  • 0
Alex HalesTeacher
Asked: June 10, 20222022-06-10T15:31:07+00:00 2022-06-10T15:31:07+00:00

.net – Publish Nuget Package to Azure Feed Using Azure Pipelines Error:NU5128

  • 0

[ad_1]

I have a .NET6.0 Project which I am trying to publish to Azure Feed using Azure Pipelines.
In the packing step I am having the following Error:

##[error]The nuget command failed with exit code(1) and error(Error NU5128: Some target frameworks declared in the dependencies group of the nuspec and the lib/ref folder do not have exact matches in the other location. Consult the list of actions below:
- Add a dependency group for net6.0 to the nuspec)
##[error]An error occurred while trying to pack the files.

I am not using a custom .nuspec file, it should be properly generated by Azure Pipelines Job.

Here is my .csproj file

 <Project Sdk="Microsoft.NET.Sdk">   
      <PropertyGroup>
        <TargetFramework>net6.0</TargetFramework>
        <ImplicitUsings>enable</ImplicitUsings>
        <Nullable>enable</Nullable>
        <PackageId>PackageId</PackageId>
        <Version>1.0.0</Version>
        <Author>Author</Author>
        <Company>Company</Company>
        <Description>Library defining common objects</Description>
      </PropertyGroup>   
    </Project>

This is my pipeline.yaml file

# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml

name: 1.0.$(Rev:r)

variables:
####################################################BUILD VARIABLES############################################
  buildConfiguration: 'Release'

jobs:
- job: Job_1
  displayName: Agent job 1
  pool:
    vmImage: ubuntu-latest
  steps:
  - checkout: self

  - task: [email protected]
    displayName: dotnet build
    inputs:
      command: 'build'
      arguments: '--configuration $(buildConfiguration)'
      projects: 'src/.'

  - task: [email protected]
    displayName: NuGet pack
    inputs:
      command: pack
      packagesToPack: '**/Dummy.csproj'
      versioningScheme: 'off'
      packDestination: $(Build.ArtifactStagingDirectory)

  - task: [email protected]
    displayName: NuGet push
    inputs:
      command: push
      searchPatternPush: $(Build.ArtifactStagingDirectory)/**/*.nupkg
      publishVstsFeed: 'xxxxx-xxxxxx-xxxxxx'
      
  - task: [email protected]
    displayName: publish artifact
    condition: succeededOrFailed()
    inputs:
      PathtoPublish: $(build.artifactstagingdirectory)
      TargetPath: '\\my\share\$(Build.DefinitionName)\$(Build.BuildNumber)'

[ad_2]

  • 0 0 Answers
  • 4 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report
Leave an answer

Leave an answer
Cancel reply

Browse

Sidebar

Ask A Question

Related Questions

  • xcode - Can you build dynamic libraries for iOS and ...

    • 0 Answers
  • bash - How to check if a process id (PID) ...

    • 401 Answers
  • database - Oracle: Changing VARCHAR2 column to CLOB

    • 371 Answers
  • What's the difference between HEAD, working tree and index, in ...

    • 367 Answers
  • Amazon EC2 Free tier - how many instances can I ...

    • 0 Answers

Stats

  • Questions : 43k

Subscribe

Login

Forgot Password?

Footer

Follow

© 2022 Stackoverflow Point. All Rights Reserved.

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.