aspnet / MusicStore

[Archived] MusicStore test application that uses ASP.NET/EF Core. Project moved to https://github.com/aspnet/AspNetCore
1.3k stars 878 forks source link

Consider explicit version numbers in release version #681

Closed cartermp closed 8 years ago

cartermp commented 8 years ago

The current project.json files in the release branch use a splat (*) string in all the package dependencies. This causes restore errors because packages that aren't guaranteed to be compatible with RC2 are pulled down.

Eilon commented 8 years ago

@cartermp we actually already do this, but only in certain branches/tags.

For example, the master branch always points at the latest version that's on NuGet, so you'll see only 1.0.0 versions in https://github.com/aspnet/MusicStore/blob/master/src/MusicStore/project.json.

And then each release also has a Git tag, which you can go to, and the exact version numbers are burned in there as well: musicstore-tags