SceneGate / Ekona

.NET implementation of DS and DSi file formats
https://scenegate.github.io/Ekona/
MIT License
25 stars 1 forks source link

:wrench: Update nuget config for latest .NET 6 SDK #27

Closed pleonex closed 2 years ago

pleonex commented 2 years ago

Description

Starting .NET 6.0.300 the CentralPacketManagement feature requires to specify with filters the specific NuGet feed to retrieve the nuget. Update the nuget.config file with the packageSource filters and update the doc.

Example

If you have several NuGet feeds (like using SceneGate previews), update your nuget.config with:

  <packageSourceMapping>
    <packageSource key="nuget.org">
      <package pattern="*" />
    </packageSource>
    <packageSource key="SceneGate-Preview">
      <package pattern="Yarhl*" />
      <package pattern="Texim*" />
      <package pattern="SceneGate*" />
    </packageSource>
  </packageSourceMapping>