Skip to content

Commit 8967a09

Browse files
committed
C#: Update all generated stubs.
1 parent 5bc2183 commit 8967a09

File tree

385 files changed

+46149
-32157
lines changed

Some content is hidden

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

385 files changed

+46149
-32157
lines changed

csharp/ql/test/resources/stubs/Antlr3.Runtime/3.5.1/Antlr3.Runtime.cs

Lines changed: 42 additions & 41 deletions
Large diffs are not rendered by default.

csharp/ql/test/resources/stubs/Antlr3.Runtime/3.5.1/Antlr3.Runtime.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10+
<ProjectReference Include="../../NETStandard.Library/1.6.0/NETStandard.Library.csproj" />
1011
<ProjectReference Include="../../_frameworks/Microsoft.NETCore.App/Microsoft.NETCore.App.csproj" />
1112
</ItemGroup>
1213
</Project>

csharp/ql/test/resources/stubs/Dapper/2.0.90/Dapper.cs renamed to csharp/ql/test/resources/stubs/Dapper/2.1.24/Dapper.cs

Lines changed: 145 additions & 178 deletions
Large diffs are not rendered by default.

csharp/ql/test/resources/stubs/EntityFramework/6.4.4/EntityFramework.SqlServer.cs

Lines changed: 427 additions & 0 deletions
Large diffs are not rendered by default.

csharp/ql/test/resources/stubs/EntityFramework/6.4.4/EntityFramework.cs

Lines changed: 7328 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
<PropertyGroup>
3+
<TargetFramework>net8.0</TargetFramework>
4+
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
5+
<OutputPath>bin\</OutputPath>
6+
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<ProjectReference Include="../../Microsoft.CSharp/4.7.0/Microsoft.CSharp.csproj" />
11+
<ProjectReference Include="../../System.CodeDom/4.7.0/System.CodeDom.csproj" />
12+
<ProjectReference Include="../../System.ComponentModel.Annotations/4.7.0/System.ComponentModel.Annotations.csproj" />
13+
<ProjectReference Include="../../System.Configuration.ConfigurationManager/4.7.0/System.Configuration.ConfigurationManager.csproj" />
14+
<ProjectReference Include="../../System.Data.SqlClient/4.8.1/System.Data.SqlClient.csproj" />
15+
<ProjectReference Include="../../_frameworks/Microsoft.NETCore.App/Microsoft.NETCore.App.csproj" />
16+
</ItemGroup>
17+
</Project>
Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
// This file contains auto-generated code.
2+
// Generated from `Iesi.Collections, Version=4.0.0.4000, Culture=neutral, PublicKeyToken=aa95f207798dfdb4`.
3+
namespace Iesi
4+
{
5+
namespace Collections
6+
{
7+
namespace Generic
8+
{
9+
public class LinkedHashSet<T> : System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.IEnumerable, System.Collections.Generic.ISet<T>
10+
{
11+
void System.Collections.Generic.ICollection<T>.Add(T item) => throw null;
12+
public bool Add(T item) => throw null;
13+
public void Clear() => throw null;
14+
public bool Contains(T item) => throw null;
15+
public void CopyTo(T[] array, int arrayIndex) => throw null;
16+
public int Count { get => throw null; }
17+
public LinkedHashSet() => throw null;
18+
public LinkedHashSet(System.Collections.Generic.IEnumerable<T> initialValues) => throw null;
19+
public void ExceptWith(System.Collections.Generic.IEnumerable<T> other) => throw null;
20+
System.Collections.Generic.IEnumerator<T> System.Collections.Generic.IEnumerable<T>.GetEnumerator() => throw null;
21+
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() => throw null;
22+
public void IntersectWith(System.Collections.Generic.IEnumerable<T> other) => throw null;
23+
public bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other) => throw null;
24+
public bool IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other) => throw null;
25+
bool System.Collections.Generic.ICollection<T>.IsReadOnly { get => throw null; }
26+
public bool IsSubsetOf(System.Collections.Generic.IEnumerable<T> other) => throw null;
27+
public bool IsSupersetOf(System.Collections.Generic.IEnumerable<T> other) => throw null;
28+
public bool Overlaps(System.Collections.Generic.IEnumerable<T> other) => throw null;
29+
public bool Remove(T item) => throw null;
30+
public bool SetEquals(System.Collections.Generic.IEnumerable<T> other) => throw null;
31+
public void SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other) => throw null;
32+
public void UnionWith(System.Collections.Generic.IEnumerable<T> other) => throw null;
33+
}
34+
public sealed class ReadOnlySet<T> : System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.IEnumerable, System.Collections.Generic.ISet<T>
35+
{
36+
void System.Collections.Generic.ICollection<T>.Add(T item) => throw null;
37+
bool System.Collections.Generic.ISet<T>.Add(T item) => throw null;
38+
void System.Collections.Generic.ICollection<T>.Clear() => throw null;
39+
public bool Contains(T item) => throw null;
40+
public void CopyTo(T[] array, int arrayIndex) => throw null;
41+
public int Count { get => throw null; }
42+
public ReadOnlySet(System.Collections.Generic.ISet<T> basisSet) => throw null;
43+
void System.Collections.Generic.ISet<T>.ExceptWith(System.Collections.Generic.IEnumerable<T> other) => throw null;
44+
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() => throw null;
45+
public System.Collections.Generic.IEnumerator<T> GetEnumerator() => throw null;
46+
void System.Collections.Generic.ISet<T>.IntersectWith(System.Collections.Generic.IEnumerable<T> other) => throw null;
47+
public bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other) => throw null;
48+
public bool IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other) => throw null;
49+
public bool IsReadOnly { get => throw null; }
50+
public bool IsSubsetOf(System.Collections.Generic.IEnumerable<T> other) => throw null;
51+
public bool IsSupersetOf(System.Collections.Generic.IEnumerable<T> other) => throw null;
52+
public bool Overlaps(System.Collections.Generic.IEnumerable<T> other) => throw null;
53+
bool System.Collections.Generic.ICollection<T>.Remove(T item) => throw null;
54+
public bool SetEquals(System.Collections.Generic.IEnumerable<T> other) => throw null;
55+
void System.Collections.Generic.ISet<T>.SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other) => throw null;
56+
void System.Collections.Generic.ISet<T>.UnionWith(System.Collections.Generic.IEnumerable<T> other) => throw null;
57+
}
58+
public sealed class SynchronizedSet<T> : System.Collections.Generic.ICollection<T>, System.Collections.Generic.IEnumerable<T>, System.Collections.IEnumerable, System.Collections.Generic.ISet<T>
59+
{
60+
void System.Collections.Generic.ICollection<T>.Add(T item) => throw null;
61+
public bool Add(T item) => throw null;
62+
public void Clear() => throw null;
63+
public bool Contains(T item) => throw null;
64+
public void CopyTo(T[] array, int arrayIndex) => throw null;
65+
public int Count { get => throw null; }
66+
public SynchronizedSet(System.Collections.Generic.ISet<T> basisSet) => throw null;
67+
public void ExceptWith(System.Collections.Generic.IEnumerable<T> other) => throw null;
68+
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator() => throw null;
69+
public System.Collections.Generic.IEnumerator<T> GetEnumerator() => throw null;
70+
public void IntersectWith(System.Collections.Generic.IEnumerable<T> other) => throw null;
71+
public bool IsProperSubsetOf(System.Collections.Generic.IEnumerable<T> other) => throw null;
72+
public bool IsProperSupersetOf(System.Collections.Generic.IEnumerable<T> other) => throw null;
73+
public bool IsReadOnly { get => throw null; }
74+
public bool IsSubsetOf(System.Collections.Generic.IEnumerable<T> other) => throw null;
75+
public bool IsSupersetOf(System.Collections.Generic.IEnumerable<T> other) => throw null;
76+
public bool Overlaps(System.Collections.Generic.IEnumerable<T> other) => throw null;
77+
public bool Remove(T item) => throw null;
78+
public bool SetEquals(System.Collections.Generic.IEnumerable<T> other) => throw null;
79+
public void SymmetricExceptWith(System.Collections.Generic.IEnumerable<T> other) => throw null;
80+
public void UnionWith(System.Collections.Generic.IEnumerable<T> other) => throw null;
81+
}
82+
}
83+
}
84+
}

csharp/ql/test/resources/stubs/Iesi.Collections/4.0.4/Iesi.Collections.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77
</PropertyGroup>
88

99
<ItemGroup>
10+
<ProjectReference Include="../../NETStandard.Library/1.6.1/NETStandard.Library.csproj" />
11+
<ProjectReference Include="../../System.Runtime.Serialization.Formatters/4.3.0/System.Runtime.Serialization.Formatters.csproj" />
1012
<ProjectReference Include="../../_frameworks/Microsoft.NETCore.App/Microsoft.NETCore.App.csproj" />
1113
</ItemGroup>
1214
</Project>

0 commit comments

Comments
 (0)