kniEngine / kni

KNI is a cross-platform C# game framework.
Other
130 stars 9 forks source link

Can't update to 3.12.9001.1 for iOS NuGet #1633

Closed gaetandezeiraud closed 3 months ago

gaetandezeiraud commented 4 months ago

Related to the release of the 3.12.9001.1 version for iOS and Input. Can't update my project (default one) to the latest version with the fix because an error with Nuget.

Failed to restore package.

No more informations. Same if I modified the versions directly in the csproj like so:

  <ItemGroup>
    <PackageReference Include="MonoGame.Framework.iOS.9000" Version="3.12.9001.1" />
    <PackageReference Include="nkast.Xna.Framework.Content.Pipeline.Builder" Version="3.12.9001" />
    <PackageReference Include="nkast.Xna.Framework" Version="3.12.9001" />
    <PackageReference Include="nkast.Xna.Framework.Graphics" Version="3.12.9001" />
    <PackageReference Include="nkast.Xna.Framework.Content" Version="3.12.9001" />
    <PackageReference Include="nkast.Xna.Framework.Audio" Version="3.12.9001" />
    <PackageReference Include="nkast.Xna.Framework.Media" Version="3.12.9001" />
    <PackageReference Include="nkast.Xna.Framework.Input" Version="3.12.9001.1" />
    <PackageReference Include="nkast.Xna.Framework.Game" Version="3.12.9001" />
  </ItemGroup>

I have nothing more special to say, no more detailed error. Just some warnings:

Downgrading the detected package: nkast.Xna.Framework from 3.12.9001.1 to 3.12.9001. Reference the package directly from the project to select a different version.
 Game1iOS -> MonoGame.Framework.iOS.9000 3.12.9001.1 -> nkast.Xna.Framework (>= 3.12.9001.1)
 Game1iOS -> nkast.Xna.Framework (>= 3.12.9001)
Downgrading the detected package: nkast.Xna.Framework.Content from 3.12.9001.1 to 3.12.9001. Reference the package directly from the project to select a different version.
 Game1iOS -> MonoGame.Framework.iOS.9000 3.12.9001.1 -> nkast.Xna.Framework.Content (>= 3.12.9001.1)
 Game1iOS -> nkast.Xna.Framework.Content (>= 3.12.9001)
Detected package downgrade: nkast.Xna.Framework.Graphics from 3.12.9001.1 to 3.12.9001. Reference the package directly from the project to select a different version.
 Game1iOS -> MonoGame.Framework.iOS.9000 3.12.9001.1 -> nkast.Xna.Framework.Graphics (>= 3.12.9001.1)
 Game1iOS -> nkast.Xna.Framework.Graphics (>= 3.12.9001)
Detected package downgrade: nkast.Xna.Framework.Audio from 3.12.9001.1 to 3.12.9001. Reference the package directly from the project to select a different version.
 Game1iOS -> MonoGame.Framework.iOS.9000 3.12.9001.1 -> nkast.Xna.Framework.Audio (>= 3.12.9001.1)
 Game1iOS -> nkast.Xna.Framework.Audio (>= 3.12.9001)
Downgrading detected package: nkast.Xna.Framework.Media from 3.12.9001.1 to 3.12.9001. Reference the package directly from the project to select a different version.
 Game1iOS -> MonoGame.Framework.iOS.9000 3.12.9001.1 -> nkast.Xna.Framework.Media (>= 3.12.9001.1)
 Game1iOS -> nkast.Xna.Framework.Media (>= 3.12.9001)
Downgraded package detected: nkast.Xna.Framework.Game from 3.12.9001.1 to 3.12.9001. Reference the package directly from the project to select a different version.
 Game1iOS -> MonoGame.Framework.iOS.9000 3.12.9001.1 -> nkast.Xna.Framework.Game (>= 3.12.9001.1)
 Game1iOS -> nkast.Xna.Framework.Game (>= 3.12.9001)

But version is already set up in the csproj with the correct version I want (change nothing from the NuGet UI, it failed an restore old configuration).