Skip to content
This repository has been archived by the owner on May 15, 2024. It is now read-only.

Switch to lower dependencies #247

Merged
merged 1 commit into from
Nov 16, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .semver
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
:major: 1
:minor: 15
:minor: 16
:patch: 0
:special: ''
:metadata: ''
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ class Albacore::NugetModel::Package
def to_template
template = self.orig_to_template
if @metadata.id == 'DotNetZip'
template = template.map { |s| s.sub '~>', '>=' }
before = template.take_while { |l| l != 'dependencies' }
after = template.drop_while { |l| l != 'dependencies' }.drop(1)
template = [
Expand Down
12 changes: 8 additions & 4 deletions paket.dependencies
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
source https://api.nuget.org/v3/index.json

framework: auto-detect
storage: none
content: none

source https://www.nuget.org/api/v2
nuget System.Security.Permissions
nuget System.Text.Encoding.CodePages
nuget System.Text.Encoding.Extensions
nuget System.Runtime.CompilerServices.Unsafe !~> 4.7
nuget System.Security.AccessControl !~> 4.7
nuget System.Security.Permissions !~> 4.7
nuget System.Security.Principal.Windows !~> 4.7
nuget System.Text.Encoding.CodePages !~> 4.7
33 changes: 10 additions & 23 deletions paket.lock
Original file line number Diff line number Diff line change
@@ -1,26 +1,13 @@
STORAGE: NONE
CONTENT: NONE
RESTRICTION: == netstandard2.0
NUGET
remote: https://www.nuget.org/api/v2
Microsoft.NETCore.Platforms (5.0)
Microsoft.NETCore.Targets (5.0)
System.Runtime (4.3.1)
Microsoft.NETCore.Platforms (>= 1.1.1)
Microsoft.NETCore.Targets (>= 1.1.3)
System.Runtime.CompilerServices.Unsafe (5.0)
System.Security.AccessControl (5.0)
System.Security.Principal.Windows (>= 5.0)
System.Security.Permissions (5.0)
System.Security.AccessControl (>= 5.0)
System.Security.Principal.Windows (5.0)
System.Text.Encoding (4.3)
Microsoft.NETCore.Platforms (>= 1.1)
Microsoft.NETCore.Targets (>= 1.1)
System.Runtime (>= 4.3)
System.Text.Encoding.CodePages (5.0)
System.Runtime.CompilerServices.Unsafe (>= 5.0)
System.Text.Encoding.Extensions (4.3)
Microsoft.NETCore.Platforms (>= 1.1)
Microsoft.NETCore.Targets (>= 1.1)
System.Runtime (>= 4.3)
System.Text.Encoding (>= 4.3)
remote: https://api.nuget.org/v3/index.json
System.Runtime.CompilerServices.Unsafe (4.7.1)
System.Security.AccessControl (4.7)
System.Security.Principal.Windows (>= 4.7)
System.Security.Permissions (4.7)
System.Security.AccessControl (>= 4.7)
System.Security.Principal.Windows (4.7)
System.Text.Encoding.CodePages (4.7.1)
System.Runtime.CompilerServices.Unsafe (>= 4.7.1)
7 changes: 4 additions & 3 deletions src/SolutionInfo.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@

using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
[assembly: AssemblyVersion("1.15.0")]
[assembly: AssemblyFileVersion("1.15.0")]
[assembly: AssemblyInformationalVersion("1.15.0.000000")]
[assembly: AssemblyVersion("1.16.0")]
[assembly: AssemblyFileVersion("1.16.0")]
[assembly: AssemblyInformationalVersion("1.16.0.000000")]