myget

Best practice for using Source Link

爱⌒轻易说出口 提交于 2021-01-28 05:08:12
问题 I am trying to implement Source Link in a NuGet package. I have successfully implemented the instructions in the GitHub README (https://github.com/dotnet/sourcelink), but am confused about which artifacts to upload to our NuGet package source (MyGet). It seems that two artifacts are generated; a .nupkg and .snupkg file. MyGet returns a 409 response when I attempt to upload both to the same feed. So, what is the best practice for using Source Link? Is it to use a separate feed for the .snupkg

Why is the wrong version in a MyGet feed labelled as the latest version of the package?

柔情痞子 提交于 2019-12-12 23:54:59
问题 There are several versions created for MyGet : System.Linq.Dynamic.Core : However for some reason the oldest version still has the flag latest ? Is this a bug in MyGet, or is there a setting to fix this ? 来源: https://stackoverflow.com/questions/53158868/why-is-the-wrong-version-in-a-myget-feed-labelled-as-the-latest-version-of-the-p

Differences between aspnetcidev and aspnetvnext?

限于喜欢 提交于 2019-12-03 04:28:26
问题 What are the differences between aspnetcidev and aspnetvnext? I see that aspnetcidev says "quick builds", but what does this mean? 回答1: Jan 29, 2016 edit: This information is now part of the ASP.NET wiki: https://github.com/aspnet/Home/wiki/NuGet-feeds The ASP.NET build system uses 3 myget feeds for each branch + nuget.org . aspnetvolatile<branch> ( aspnetvolatiledev / aspnetvolatilerelease ) aspnetci<branch> ( aspnetcidev / aspnetcirelease ) aspnetvnext (dev branch)/ aspnetrelease (release

Differences between aspnetcidev and aspnetvnext?

你。 提交于 2019-12-02 17:42:18
What are the differences between aspnetcidev and aspnetvnext ? I see that aspnetcidev says "quick builds", but what does this mean? Jan 29, 2016 edit: This information is now part of the ASP.NET wiki: https://github.com/aspnet/Home/wiki/NuGet-feeds The ASP.NET build system uses 3 myget feeds for each branch + nuget.org . aspnetvolatile<branch> ( aspnetvolatiledev / aspnetvolatilerelease ) aspnetci<branch> ( aspnetcidev / aspnetcirelease ) aspnetvnext (dev branch)/ aspnetrelease (release branch) After each repo under github.com/aspnet builds successfully, each package produced by it is pushed

Add custom package source to Visual Studio Code

偶尔善良 提交于 2019-11-27 17:18:38
问题 Does anybody know how to add custom package source to Visual Studio Code ? E.g. I'd like to add https://www.myget.org/F/aspnet-contrib/api/v3/index.json as a package source and drive these packages through project.json. 回答1: To add to the answer, adding a nuget.config in the project solves it for the project. Adding to the root is ok. The config could look like this: <?xml version="1.0" encoding="utf-8"?> <configuration> <packageSources> <add key="MyGet" value="https://www.myget.org/F/aspnet