forked from dotnet/arcade
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial implementation of Microsoft.DotNet.Build.Tasks.IO
Add tasks: - Chmod - DownloadFile - GetFileHash - UnzipArchive - VerifyFileHash - ZipArchive
- Loading branch information
Nate McMaster
committed
Mar 2, 2018
1 parent
54a6350
commit f509125
Showing
32 changed files
with
1,848 additions
and
121 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
* text=auto | ||
*.sh eol=lf | ||
*.bin binary |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,66 +1,68 @@ | ||
{ | ||
"sign": [ | ||
{ | ||
"certificate": "MicrosoftSHA2", | ||
"strongName": "MsSharedLib72", | ||
"values": [ | ||
"bin/Microsoft.DotNet.Build.Tasks.Feed/netstandard1.5/Microsoft.DotNet.Build.Tasks.Feed.dll", | ||
"bin/Microsoft.DotNet.Build.Tasks.Feed/netstandard1.5/*/Microsoft.DotNet.Build.Tasks.Feed.resources.dll", | ||
"bin/Microsoft.DotNet.Build.Tasks.Feed/net45/Microsoft.DotNet.Build.Tasks.Feed.dll", | ||
"bin/Microsoft.DotNet.Build.Tasks.Feed/net45/*/Microsoft.DotNet.Build.Tasks.Feed.resources.dll" | ||
] | ||
}, | ||
{ | ||
"certificate": null, | ||
"strongName": null, | ||
"values": [ | ||
"packages/*.nupkg" | ||
] | ||
} | ||
], | ||
"exclude": [ | ||
"Microsoft.Azure.KeyVault.Core.dll", | ||
"Microsoft.Build.Framework.dll", | ||
"Microsoft.Build.Utilities.Core.dll", | ||
"Microsoft.CSharp.dll", | ||
"Microsoft.Data.Edm.dll", | ||
"Microsoft.Data.OData.dll", | ||
"Microsoft.Data.Services.Client.dll", | ||
"Microsoft.DiaSymReader.dll", | ||
"Microsoft.DiaSymReader.PortablePdb.dll", | ||
"Microsoft.DotNet.VersionTools.dll", | ||
"Microsoft.WindowsAzure.Storage.dll", | ||
"Newtonsoft.Json.dll", | ||
"NuGet.Common.dll", | ||
"NuGet.Frameworks.dll", | ||
"NuGet.Packaging.Core.dll", | ||
"NuGet.Packaging.dll", | ||
"NuGet.Versioning.dll", | ||
"SleetLib.dll", | ||
"System.Buffers.dll", | ||
"System.Collections.Concurrent.dll", | ||
"System.Collections.Immutable.dll", | ||
"System.Collections.NonGeneric.dll", | ||
"System.Diagnostics.DiagnosticSource.dll", | ||
"System.Dynamic.Runtime.dll", | ||
"System.IO.Compression.ZipFile.dll", | ||
"System.IO.FileSystem.Primitives.dll", | ||
"System.ObjectModel.dll", | ||
"System.Reflection.Emit.dll", | ||
"System.Reflection.Emit.ILGeneration.dll", | ||
"System.Reflection.Metadata.dll", | ||
"System.Reflection.TypeExtensions.dll", | ||
"System.Runtime.InteropServices.RuntimeInformation.dll", | ||
"System.Runtime.Numerics.dll", | ||
"System.Runtime.Serialization.Primitives.dll", | ||
"System.Security.Cryptography.Primitives.dll", | ||
"System.Spatial.dll", | ||
"System.Threading.dll", | ||
"System.Threading.Tasks.Extensions.dll", | ||
"System.Threading.Thread.dll", | ||
"System.Threading.ThreadPool.dll", | ||
"System.Xml.ReaderWriter.dll", | ||
"System.Xml.XDocument.dll", | ||
"System.Xml.XmlDocument.dll" | ||
] | ||
} | ||
"sign": [ | ||
{ | ||
"certificate": "MicrosoftSHA2", | ||
"strongName": "MsSharedLib72", | ||
"values": [ | ||
"bin/Microsoft.DotNet.Build.Tasks.Feed/netstandard1.5/Microsoft.DotNet.Build.Tasks.Feed.dll", | ||
"bin/Microsoft.DotNet.Build.Tasks.Feed/netstandard1.5/*/Microsoft.DotNet.Build.Tasks.Feed.resources.dll", | ||
"bin/Microsoft.DotNet.Build.Tasks.Feed/net45/Microsoft.DotNet.Build.Tasks.Feed.dll", | ||
"bin/Microsoft.DotNet.Build.Tasks.Feed/net45/*/Microsoft.DotNet.Build.Tasks.Feed.resources.dll", | ||
"bin/Microsoft.DotNet.Build.Tasks.IO/netcoreapp2.0/Microsoft.DotNet.Build.Tasks.IO.dll", | ||
"bin/Microsoft.DotNet.Build.Tasks.IO/net45/Microsoft.DotNet.Build.Tasks.IO.dll" | ||
] | ||
}, | ||
{ | ||
"certificate": null, | ||
"strongName": null, | ||
"values": [ | ||
"packages/*.nupkg" | ||
] | ||
} | ||
], | ||
"exclude": [ | ||
"Microsoft.Azure.KeyVault.Core.dll", | ||
"Microsoft.Build.Framework.dll", | ||
"Microsoft.Build.Utilities.Core.dll", | ||
"Microsoft.CSharp.dll", | ||
"Microsoft.Data.Edm.dll", | ||
"Microsoft.Data.OData.dll", | ||
"Microsoft.Data.Services.Client.dll", | ||
"Microsoft.DiaSymReader.dll", | ||
"Microsoft.DiaSymReader.PortablePdb.dll", | ||
"Microsoft.DotNet.VersionTools.dll", | ||
"Microsoft.WindowsAzure.Storage.dll", | ||
"Newtonsoft.Json.dll", | ||
"NuGet.Common.dll", | ||
"NuGet.Frameworks.dll", | ||
"NuGet.Packaging.Core.dll", | ||
"NuGet.Packaging.dll", | ||
"NuGet.Versioning.dll", | ||
"SleetLib.dll", | ||
"System.Buffers.dll", | ||
"System.Collections.Concurrent.dll", | ||
"System.Collections.Immutable.dll", | ||
"System.Collections.NonGeneric.dll", | ||
"System.Diagnostics.DiagnosticSource.dll", | ||
"System.Dynamic.Runtime.dll", | ||
"System.IO.Compression.ZipFile.dll", | ||
"System.IO.FileSystem.Primitives.dll", | ||
"System.ObjectModel.dll", | ||
"System.Reflection.Emit.dll", | ||
"System.Reflection.Emit.ILGeneration.dll", | ||
"System.Reflection.Metadata.dll", | ||
"System.Reflection.TypeExtensions.dll", | ||
"System.Runtime.InteropServices.RuntimeInformation.dll", | ||
"System.Runtime.Numerics.dll", | ||
"System.Runtime.Serialization.Primitives.dll", | ||
"System.Security.Cryptography.Primitives.dll", | ||
"System.Spatial.dll", | ||
"System.Threading.dll", | ||
"System.Threading.Tasks.Extensions.dll", | ||
"System.Threading.Thread.dll", | ||
"System.Threading.ThreadPool.dll", | ||
"System.Xml.ReaderWriter.dll", | ||
"System.Xml.XDocument.dll", | ||
"System.Xml.XmlDocument.dll" | ||
] | ||
} |
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.