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

+6

CONTRIBUTING.md

+6-3

LICENSE

+1-1
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

+4-10

azure-pipelines/artifacts/_pipelines.ps1

+2-2
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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+CryptGetProvParamQuery.cs

+1-1
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+CryptHashDataFlags.cs

+1-1
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+CryptSetProvParamQuery.cs

+1-1
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+ENUM_SERVICE_STATUS.cs

+1-1
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+ProviderType.cs

+1-1
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+RegNotifyFilter.cs

+1-1
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+RegOpenKeyOptions.cs

+1-1
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+SC_ACTION.cs

+1-1
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+SC_ACTION_TYPE.cs

+1-1
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+SC_STATUS_TYPE.cs

+1-1
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+SECURITY_INFORMATION.cs

+2-2
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
@@ -80,4 +80,4 @@ public enum SECURITY_INFORMATION : uint
8080
PROCESS_TRUST_LABEL_SECURITY_INFORMATION = 0x00000080
8181
}
8282
}
83-
}
83+
}

src/AdvApi32/AdvApi32+SERVICE_FAILURE_ACTIONS.cs

+1-1
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+SERVICE_STATUS.cs

+1-1
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+SERVICE_STATUS_PROCESS.cs

+1-1
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+SERVICE_STATUS_PROCESS_Flags.cs

+1-1
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+SERVICE_TRIGGER_SPECIFIC_DATA_ITEM.cs

+1-1
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+SE_OBJECT_TYPE.cs

+2-2
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
@@ -98,4 +98,4 @@ public enum SE_OBJECT_TYPE
9898
SE_REGISTRY_WOW64_32KEY,
9999
}
100100
}
101-
}
101+
}

src/AdvApi32/AdvApi32+SafeCryptographicProviderHandle.cs

+1-1
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+SafeHashHandle.cs

+1-1
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+SafeServiceHandle.cs

+1-1
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+ServiceAccess.cs

+1-1
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+ServiceControl.cs

+2-2
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
@@ -195,4 +195,4 @@ public enum ServiceControl
195195
SERVICE_CONTROL_USERMODEREBOOT = 0x00000040
196196
}
197197
}
198-
}
198+
}

src/AdvApi32/AdvApi32+ServiceDelayedAutoStartInfo.cs

+1-1
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+ServiceDescription.cs

+1-1
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+ServiceErrorControl.cs

+1-1
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+ServiceInfoLevel.cs

+1-1
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+ServiceLaunchProtected.cs

+1-1
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+ServiceLaunchProtectedInfo.cs

+1-1
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+ServiceManagerAccess.cs

+1-1
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+ServicePreferredNodeInfo.cs

+1-1
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+ServicePreshutdownInfo.cs

+1-1
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+ServiceRequiredPrivilegesInfo.cs

+1-1
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+ServiceSidInfo.cs

+1-1
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+ServiceSidType.cs

+1-1
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+ServiceStartType.cs

+1-1
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+ServiceState.cs

+1-1
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+ServiceStateQuery.cs

+1-1
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+ServiceTrigger.cs

+1-1
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+ServiceTriggerAction.cs

+1-1
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+ServiceTriggerDataType.cs

+2-2
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
@@ -39,4 +39,4 @@ public enum ServiceTriggerDataType
3939
SERVICE_TRIGGER_DATA_TYPE_KEYWORD_ALL = 5
4040
}
4141
}
42-
}
42+
}

src/AdvApi32/AdvApi32+ServiceTriggerInfo.cs

+2-2
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
@@ -35,4 +35,4 @@ public struct ServiceTriggerInfo
3535
public IntPtr pReserved;
3636
}
3737
}
38-
}
38+
}

0 commit comments

Comments
 (0)