-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial implementation of direct git repo data reading (#288)
- Loading branch information
Showing
77 changed files
with
5,971 additions
and
2,190 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
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 @@ | ||
{ | ||
"rollForwardOnNoCandidateFx": 2 | ||
} |
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 |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. | ||
|
||
#if NET461 | ||
|
||
using System.Collections.Generic; | ||
|
||
namespace System | ||
{ | ||
internal struct ValueTuple<T1, T2> | ||
{ | ||
public T1 Item1; | ||
public T2 Item2; | ||
|
||
public ValueTuple(T1 item1, T2 item2) | ||
{ | ||
Item1 = item1; | ||
Item2 = item2; | ||
} | ||
} | ||
|
||
internal struct ValueTuple<T1, T2, T3> | ||
{ | ||
public T1 Item1; | ||
public T2 Item2; | ||
public T3 Item3; | ||
|
||
public ValueTuple(T1 item1, T2 item2, T3 item3) | ||
{ | ||
Item1 = item1; | ||
Item2 = item2; | ||
Item3 = item3; | ||
} | ||
} | ||
|
||
namespace Runtime.CompilerServices | ||
{ | ||
internal sealed class TupleElementNamesAttribute : Attribute | ||
{ | ||
public IList<string> TransformNames { get; } | ||
|
||
public TupleElementNamesAttribute(string[] transformNames) | ||
{ | ||
TransformNames = transformNames; | ||
} | ||
} | ||
} | ||
} | ||
|
||
#endif |
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.