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.

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则