Skip to content
This repository was archived by the owner on Jul 26, 2023. It is now read-only.

Commit e19528d

Browse files
authored
Merge pull request #452 from dotnet/dotnetFoundation.1
Incorporate into .NET Foundation
2 parents e55ec5e + dabca2b commit e19528d

File tree

567 files changed

+685
-682
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

567 files changed

+685
-682
lines changed

CODE-OF-CONDUCT.md

Lines changed: 6 additions & 0 deletions

CONTRIBUTING.md

Lines changed: 6 additions & 3 deletions

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 All contributors
3+
Copyright (c) .NET Foundation and Contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 4 additions & 10 deletions

azure-pipelines/artifacts/_pipelines.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ function Create-SymbolicLink {
3030
if (!(Test-Path $LinkContainer)) { mkdir $LinkContainer }
3131
Write-Verbose "Linking $Link to $Target"
3232
if ($IsMacOS -or $IsLinux) {
33-
ln $Target $Link
33+
ln $Target $Link | Out-Null
3434
} else {
35-
cmd /c mklink $Link $Target
35+
cmd /c "mklink `"$Link`" `"$Target`"" | Out-Null
3636
}
3737
}
3838

src/AdvApi32.Tests/AdvApi32Facts.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) All contributors. All rights reserved.
1+
// Copyright © .NET Foundation and Contributors. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
using System;

src/AdvApi32/AdvApi32+ALG_ID.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) All contributors. All rights reserved.
1+
// Copyright © .NET Foundation and Contributors. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace PInvoke

src/AdvApi32/AdvApi32+CryptAcquireContextFlags.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) All contributors. All rights reserved.
1+
// Copyright © .NET Foundation and Contributors. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace PInvoke

src/AdvApi32/AdvApi32+CryptCreateHashFlags.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) All contributors. All rights reserved.
1+
// Copyright © .NET Foundation and Contributors. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace PInvoke

src/AdvApi32/AdvApi32+CryptGetHashParamFlags.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) All contributors. All rights reserved.
1+
// Copyright © .NET Foundation and Contributors. All rights reserved.
22
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
33

44
namespace PInvoke

0 commit comments

Comments
 (0)