-
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.
* project udpates * start new file system package. * make fs static extensions * update filesystem stuff * remove vanara and udpate windows fs * some new lang features * first changes so that it works with 9.0 * update verification * fix linux ci restore * remove dependency * try other drive * custom progress for test * implement new hashing service * add docs * fix sha3 tests * seal some classes * make packable * add frugallist * some corrections and tests * fix some downloader beahvior and rename tests * fix linux tests (again...) * update deps
- Loading branch information
Showing
196 changed files
with
9,739 additions
and
4,106 deletions.
There are no files selected for viewing
Binary file not shown.
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 was deleted.
Oops, something went wrong.
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
20 changes: 20 additions & 0 deletions
20
src/CommonUtilities.DownloadManager/src/Configuration/ValidationPolicy.cs
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,20 @@ | ||
namespace AnakinRaW.CommonUtilities.DownloadManager.Configuration; | ||
|
||
/// <summary> | ||
/// Options how validation at the end of a download shall be handled. | ||
/// </summary> | ||
public enum ValidationPolicy | ||
{ | ||
/// <summary> | ||
/// Validation will always be skipped. | ||
/// </summary> | ||
NoValidation, | ||
/// <summary> | ||
/// Validation is optional. | ||
/// </summary> | ||
Optional, | ||
/// <summary> | ||
/// Validation is required. | ||
/// </summary> | ||
Required, | ||
} |
25 changes: 0 additions & 25 deletions
25
src/CommonUtilities.DownloadManager/src/Configuration/VerificationPolicy.cs
This file was deleted.
Oops, something went wrong.
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
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.