This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"locked": false, | |
"version": 1, | |
"targets": { | |
".NETFramework,Version=v4.6": { | |
"packageA/1.0.0": { | |
"shared": { | |
"codeLanguage": { | |
"cs": { | |
"shared/cs/net45/code/code.cs": { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
namespace NuGet.Versioning | |
{ | |
/// <summary> | |
/// VersionFloatComparer orders versions around a floating range. The range in this | |
/// case is only the floating part. | |
/// Ex: [1.0.*, 2.0.0) has a floating range of [1.0.0, 1.1.0) | |
/// Filtering on the [1.0.0, 2.0.0) range needs to happen outside of this class, it will not be | |
/// taken into account here. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using NuGet.Client; | |
using NuGet.Client.VisualStudio; | |
using System; | |
using System.Threading; | |
using System.Threading.Tasks; | |
namespace ConsoleApplication8 | |
{ | |
class Program | |
{ |
NewerOlder