Use different Nuget feed with Porting Assistant for .Net

0

hi, We are trying to use Porting Assistant for .Net within a restricted network where access to nuget.org feed to package manager is blocked. Instead we are required to use an alternate internal Nuget feed. Currently, when I run the assessment, I am unable to get proper results due to this disconnect. Is there a way to configure Porting Assistant for .Net to use alternate Nuget feed? Thanks!

Ashok
asked a year ago246 views
2 Answers
4

Porting Assistant for .NET does not have built-in support to configure an alternate NuGet feed

You can create a custom NuGet.config file in your solution folder with the necessary configurations pointing to your internal NuGet feed. Porting Assistant for .NET relies on the dotnet CLI tool to gather NuGet package information. By placing the custom NuGet.config file in your solution folder, the dotnet CLI will use the specified internal NuGet feed when looking for packages.

example NuGet.config

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <clear />
    <add key="InternalFeed" value="https://path-to-your-internal-nuget-feed/" />
  </packageSources>
</configuration>

profile picture
EXPERT
answered a year ago
  • Thanks for the suggestion. I will try this.

0

https://docs.aws.amazon.com/portingassistant/latest/userguide/what-is-porting-assistant.html

Internal NuGet

Some users have an internal NuGet hosting service, similar to nuget.org, that is accessible only within their local network.

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="InternalFeed" value="http://your.internal.feed/nuget" />
  </packageSources>
</configuration>

Make sure to replace InternalFeed with a name that identifies your internal NuGet feed, and http://your.internal.feed/nuget with the URL of your internal NuGet feed.

I hope the below link also helps this.

https://learn.microsoft.com/en-us/nuget/consume-packages/configuring-nuget-behavior

profile pictureAWS
nemf
answered a year ago
  • Thanks for the suggestion. I will try this.

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions