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
posta un anno fa253 visualizzazioni
2 Risposte
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
ESPERTO
con risposta un anno fa
  • 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
con risposta un anno fa
  • Thanks for the suggestion. I will try this.

Accesso non effettuato. Accedi per postare una risposta.

Una buona risposta soddisfa chiaramente la domanda, fornisce un feedback costruttivo e incoraggia la crescita professionale del richiedente.

Linee guida per rispondere alle domande