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
已提問 1 年前檢視次數 253 次
2 個答案
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
專家
已回答 1 年前
  • 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
已回答 1 年前
  • Thanks for the suggestion. I will try this.

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南