1. 23 7月, 2019 1 次提交
  2. 20 7月, 2019 11 次提交
  3. 19 7月, 2019 5 次提交
  4. 18 7月, 2019 3 次提交
  5. 17 7月, 2019 4 次提交
  6. 16 7月, 2019 8 次提交
  7. 15 7月, 2019 4 次提交
  8. 11 7月, 2019 2 次提交
  9. 10 7月, 2019 2 次提交
    • P
      Implement roll-forward policies for .NET Core SDK resolution. (dotnet/core-setup#6953) · 9441ec93
      Peter Huene 提交于
      Implements additional roll-forward policies for resolving a .NET
      Core SDK based upon new SDK settings in `global.json`.
      
      Two new values are now supported in `global.json` in the `sdk` settings:
      
      * `rollForward` - the roll-forward policy to use (see below).
      * `allowPrerelease` - controls whether or not preview SDKS may be resolved
      (defaults to `true` to allow resolving prerelease SDKs).  
      
      
      The new roll-forward policies are:
      
      * `patch` - If the requested SDK is installed, use it. Otherwise, use the
        latest installed patch level that matches the requested major, minor, and
        feature band.
      * `feature` - If the requested major, minor, and feature band is installed, use
      the latest patch level for the specified feature band.  Otherwise, roll-forward
      to the next available feature band and use the latest patch level for that
      feature band.
      * `minor` - If the requested major, minor, and feature band is installed, use
      the latest patch level for the specified feature band.  Otherwise, roll-forward
      to the next available feature band available for the same major version and use
      the latest patch level for that feature band.
      * `major` - If the requested major, minor, and feature band is installed, use
      the latest patch level for the specified feature band.  Otherwise, roll-forward
      to the next available feature band available without restriction and use the
      latest patch level for that feature band.
      * `latestPatch` - Use the latest installed patch level that matches the
      requested major, minor, and feature band.
      * `latestFeature` - Use the latest installed patch level for the latest
      installed feature band that matches the requested major and minor version.
      * `latestMinor` - Use the latest installed patch level for the latest installed
      feature band for the latest installed minor version that matches the requested
      major version.
      * `latestMajor` - Use the absolutely latest .NET Core SDK available.
      
      For backwards compatibility, the policy when a `version` is not specified in
      `global.json` will be `latestMajor`.  The default policy when a `version` is
      specified but `rollForward` is not specified will be `patch`.
      
      Commit migrated from https://github.com/dotnet/core-setup/commit/5cd0245860335e0b307f6a46b99c6f9244887318
      9441ec93
    • V
      Retry extraction of bundle to avoid issues with locked files by AV (dotnet/core-setup#7135) · cd67390b
      Vitek Karas 提交于
      Retry extraction of bundle to avoid issues with locked files by AV software
      Address some memory leaks
      
      
      Commit migrated from https://github.com/dotnet/core-setup/commit/552dba193c0f21a03687d2f14861c7a4dcf8dd0f
      cd67390b