@tsonic/efcore-sqlite 10.0.3 → 10.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.Data.Sqlite/internal/index.d.ts +167 -109
- package/Microsoft.DotNet.PlatformAbstractions/internal/index.d.ts +6 -4
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +54 -54
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +9 -7
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +12 -8
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +45 -13
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +12 -8
- package/Microsoft.EntityFrameworkCore.Migrations.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/internal/index.d.ts +21 -11
- package/Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal/internal/index.d.ts +11 -5
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/internal/index.d.ts +23 -15
- package/Microsoft.EntityFrameworkCore.Sqlite.Internal/internal/index.d.ts +42 -42
- package/Microsoft.EntityFrameworkCore.Sqlite.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal/internal/index.d.ts +12 -8
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/internal/index.d.ts +18 -8
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/internal/index.d.ts +182 -38
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/internal/index.d.ts +18 -10
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/internal/index.d.ts +73 -26
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/internal/index.d.ts +22 -12
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.d.ts +26 -6
- package/Microsoft.EntityFrameworkCore.d.ts +3 -0
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +5 -5
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/Microsoft.Extensions.DependencyModel/internal/index.d.ts +91 -54
- package/Microsoft.Extensions.DependencyModel.Resolution/internal/index.d.ts +32 -20
- package/SQLitePCL/internal/index.d.ts +115 -43
- package/SQLitePCL.d.ts +3 -0
- package/System.Collections.Generic/internal/index.d.ts +9 -9
- package/System.Collections.Generic.d.ts +3 -0
- package/__internal/extensions/index.d.ts +342 -16
- package/package.json +5 -5
|
@@ -7,20 +7,28 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import type { ICompilationAssemblyResolver } from "../../Microsoft.Extensions.DependencyModel.Resolution/internal/index.js";
|
|
10
|
-
import type {
|
|
11
|
-
import type { Stream } from "@tsonic/dotnet/System.IO.js";
|
|
12
|
-
import
|
|
13
|
-
import
|
|
14
|
-
import type {
|
|
10
|
+
import type { IEnumerable_1, IReadOnlyList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
11
|
+
import type { Stream } from "@tsonic/dotnet/System.IO/internal/index.js";
|
|
12
|
+
import type { Assembly, AssemblyName } from "@tsonic/dotnet/System.Reflection/internal/index.js";
|
|
13
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
14
|
+
import type { Boolean as ClrBoolean, IDisposable, IEquatable_1, Int32, Nullable_1, Object as ClrObject, String as ClrString, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
15
15
|
|
|
16
16
|
export interface IDependencyContextReader$instance extends IDisposable {
|
|
17
|
+
readonly __tsonic_iface_Microsoft_Extensions_DependencyModel_IDependencyContextReader: never;
|
|
18
|
+
|
|
17
19
|
Read(stream: Stream): DependencyContext;
|
|
18
20
|
}
|
|
19
21
|
|
|
20
22
|
|
|
23
|
+
export interface IDependencyContextReader$instance extends System_Internal.IDisposable {}
|
|
24
|
+
|
|
21
25
|
export type IDependencyContextReader = IDependencyContextReader$instance;
|
|
22
26
|
|
|
23
27
|
export interface Dependency$instance {
|
|
28
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_Dependency: never;
|
|
29
|
+
|
|
30
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
31
|
+
|
|
24
32
|
readonly Name: string;
|
|
25
33
|
readonly Version: string;
|
|
26
34
|
Equals(other: Dependency): boolean;
|
|
@@ -37,38 +45,42 @@ export const Dependency: {
|
|
|
37
45
|
export type Dependency = Dependency$instance;
|
|
38
46
|
|
|
39
47
|
export interface CompilationLibrary$instance extends Library {
|
|
40
|
-
readonly
|
|
41
|
-
|
|
42
|
-
|
|
48
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_CompilationLibrary: never;
|
|
49
|
+
|
|
50
|
+
readonly Assemblies: IReadOnlyList_1<System_Internal.String>;
|
|
51
|
+
ResolveReferencePaths(): IEnumerable_1<System_Internal.String>;
|
|
52
|
+
ResolveReferencePaths(...customResolvers: ICompilationAssemblyResolver[]): IEnumerable_1<System_Internal.String>;
|
|
43
53
|
}
|
|
44
54
|
|
|
45
55
|
|
|
46
56
|
export const CompilationLibrary: {
|
|
47
|
-
new(type: string, name: string, version: string, hash: string, assemblies:
|
|
48
|
-
new(type: string, name: string, version: string, hash: string, assemblies:
|
|
57
|
+
new(type: string, name: string, version: string, hash: string, assemblies: IEnumerable_1<System_Internal.String>, dependencies: IEnumerable_1<Dependency>, serviceable: boolean): CompilationLibrary;
|
|
58
|
+
new(type: string, name: string, version: string, hash: string, assemblies: IEnumerable_1<System_Internal.String>, dependencies: IEnumerable_1<Dependency>, serviceable: boolean, path: string, hashPath: string): CompilationLibrary;
|
|
49
59
|
};
|
|
50
60
|
|
|
51
61
|
|
|
52
62
|
export type CompilationLibrary = CompilationLibrary$instance;
|
|
53
63
|
|
|
54
64
|
export interface CompilationOptions$instance {
|
|
55
|
-
readonly
|
|
65
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_CompilationOptions: never;
|
|
66
|
+
|
|
67
|
+
readonly AllowUnsafe: Nullable_1<System_Internal.Boolean>;
|
|
56
68
|
readonly DebugType: string | undefined;
|
|
57
|
-
readonly Defines:
|
|
58
|
-
readonly DelaySign:
|
|
59
|
-
readonly EmitEntryPoint:
|
|
60
|
-
readonly GenerateXmlDocumentation:
|
|
69
|
+
readonly Defines: IReadOnlyList_1<string | undefined>;
|
|
70
|
+
readonly DelaySign: Nullable_1<System_Internal.Boolean>;
|
|
71
|
+
readonly EmitEntryPoint: Nullable_1<System_Internal.Boolean>;
|
|
72
|
+
readonly GenerateXmlDocumentation: Nullable_1<System_Internal.Boolean>;
|
|
61
73
|
readonly KeyFile: string | undefined;
|
|
62
74
|
readonly LanguageVersion: string | undefined;
|
|
63
|
-
readonly Optimize:
|
|
75
|
+
readonly Optimize: Nullable_1<System_Internal.Boolean>;
|
|
64
76
|
readonly Platform: string | undefined;
|
|
65
|
-
readonly PublicSign:
|
|
66
|
-
readonly WarningsAsErrors:
|
|
77
|
+
readonly PublicSign: Nullable_1<System_Internal.Boolean>;
|
|
78
|
+
readonly WarningsAsErrors: Nullable_1<System_Internal.Boolean>;
|
|
67
79
|
}
|
|
68
80
|
|
|
69
81
|
|
|
70
82
|
export const CompilationOptions: {
|
|
71
|
-
new(defines:
|
|
83
|
+
new(defines: IEnumerable_1<System_Internal.String>, languageVersion: string, platform: string, allowUnsafe: Nullable_1<System_Internal.Boolean>, warningsAsErrors: Nullable_1<System_Internal.Boolean>, optimize: Nullable_1<System_Internal.Boolean>, keyFile: string, delaySign: Nullable_1<System_Internal.Boolean>, publicSign: Nullable_1<System_Internal.Boolean>, debugType: string, emitEntryPoint: Nullable_1<System_Internal.Boolean>, generateXmlDocumentation: Nullable_1<System_Internal.Boolean>): CompilationOptions;
|
|
72
84
|
readonly Default: CompilationOptions;
|
|
73
85
|
};
|
|
74
86
|
|
|
@@ -76,17 +88,19 @@ export const CompilationOptions: {
|
|
|
76
88
|
export type CompilationOptions = CompilationOptions$instance;
|
|
77
89
|
|
|
78
90
|
export interface DependencyContext$instance {
|
|
91
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_DependencyContext: never;
|
|
92
|
+
|
|
79
93
|
readonly CompilationOptions: CompilationOptions;
|
|
80
|
-
readonly CompileLibraries:
|
|
81
|
-
readonly RuntimeGraph:
|
|
82
|
-
readonly RuntimeLibraries:
|
|
94
|
+
readonly CompileLibraries: IReadOnlyList_1<CompilationLibrary>;
|
|
95
|
+
readonly RuntimeGraph: IReadOnlyList_1<RuntimeFallbacks>;
|
|
96
|
+
readonly RuntimeLibraries: IReadOnlyList_1<RuntimeLibrary>;
|
|
83
97
|
readonly Target: TargetInfo;
|
|
84
98
|
Merge(other: DependencyContext): DependencyContext;
|
|
85
99
|
}
|
|
86
100
|
|
|
87
101
|
|
|
88
102
|
export const DependencyContext: {
|
|
89
|
-
new(target: TargetInfo, compilationOptions: CompilationOptions, compileLibraries:
|
|
103
|
+
new(target: TargetInfo, compilationOptions: CompilationOptions, compileLibraries: IEnumerable_1<CompilationLibrary>, runtimeLibraries: IEnumerable_1<RuntimeLibrary>, runtimeGraph: IEnumerable_1<RuntimeFallbacks>): DependencyContext;
|
|
90
104
|
readonly Default: DependencyContext | undefined;
|
|
91
105
|
Load(assembly: Assembly): DependencyContext | undefined;
|
|
92
106
|
};
|
|
@@ -94,7 +108,12 @@ export const DependencyContext: {
|
|
|
94
108
|
|
|
95
109
|
export type DependencyContext = DependencyContext$instance;
|
|
96
110
|
|
|
97
|
-
export interface DependencyContextJsonReader$instance {
|
|
111
|
+
export interface DependencyContextJsonReader$instance extends IDependencyContextReader$instance {
|
|
112
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_DependencyContextJsonReader: never;
|
|
113
|
+
|
|
114
|
+
readonly __tsonic_iface_Microsoft_Extensions_DependencyModel_IDependencyContextReader: never;
|
|
115
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
116
|
+
|
|
98
117
|
Dispose(disposing: boolean): void;
|
|
99
118
|
Dispose(): void;
|
|
100
119
|
Read(stream: Stream): DependencyContext;
|
|
@@ -110,12 +129,12 @@ export interface __DependencyContextJsonReader$views {
|
|
|
110
129
|
As_IDependencyContextReader(): IDependencyContextReader$instance;
|
|
111
130
|
}
|
|
112
131
|
|
|
113
|
-
export interface DependencyContextJsonReader$instance extends IDependencyContextReader$instance {}
|
|
114
|
-
|
|
115
132
|
export type DependencyContextJsonReader = DependencyContextJsonReader$instance & __DependencyContextJsonReader$views;
|
|
116
133
|
|
|
117
134
|
|
|
118
135
|
export interface DependencyContextLoader$instance {
|
|
136
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_DependencyContextLoader: never;
|
|
137
|
+
|
|
119
138
|
Load(assembly: Assembly): DependencyContext | undefined;
|
|
120
139
|
}
|
|
121
140
|
|
|
@@ -129,6 +148,8 @@ export const DependencyContextLoader: {
|
|
|
129
148
|
export type DependencyContextLoader = DependencyContextLoader$instance;
|
|
130
149
|
|
|
131
150
|
export interface DependencyContextWriter$instance {
|
|
151
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_DependencyContextWriter: never;
|
|
152
|
+
|
|
132
153
|
Write(context: DependencyContext, stream: Stream): void;
|
|
133
154
|
}
|
|
134
155
|
|
|
@@ -141,7 +162,9 @@ export const DependencyContextWriter: {
|
|
|
141
162
|
export type DependencyContextWriter = DependencyContextWriter$instance;
|
|
142
163
|
|
|
143
164
|
export interface Library$instance {
|
|
144
|
-
readonly
|
|
165
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_Library: never;
|
|
166
|
+
|
|
167
|
+
readonly Dependencies: IReadOnlyList_1<Dependency>;
|
|
145
168
|
readonly Hash: string | undefined;
|
|
146
169
|
readonly HashPath: string | undefined;
|
|
147
170
|
readonly Name: string;
|
|
@@ -154,15 +177,17 @@ export interface Library$instance {
|
|
|
154
177
|
|
|
155
178
|
|
|
156
179
|
export const Library: {
|
|
157
|
-
new(type: string, name: string, version: string, hash: string, dependencies:
|
|
158
|
-
new(type: string, name: string, version: string, hash: string, dependencies:
|
|
159
|
-
new(type: string, name: string, version: string, hash: string, dependencies:
|
|
180
|
+
new(type: string, name: string, version: string, hash: string, dependencies: IEnumerable_1<Dependency>, serviceable: boolean): Library;
|
|
181
|
+
new(type: string, name: string, version: string, hash: string, dependencies: IEnumerable_1<Dependency>, serviceable: boolean, path: string, hashPath: string): Library;
|
|
182
|
+
new(type: string, name: string, version: string, hash: string, dependencies: IEnumerable_1<Dependency>, serviceable: boolean, path: string, hashPath: string, runtimeStoreManifestName: string): Library;
|
|
160
183
|
};
|
|
161
184
|
|
|
162
185
|
|
|
163
186
|
export type Library = Library$instance;
|
|
164
187
|
|
|
165
188
|
export interface ResourceAssembly$instance {
|
|
189
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_ResourceAssembly: never;
|
|
190
|
+
|
|
166
191
|
Locale: string;
|
|
167
192
|
readonly LocalPath: string | undefined;
|
|
168
193
|
Path: string;
|
|
@@ -178,6 +203,8 @@ export const ResourceAssembly: {
|
|
|
178
203
|
export type ResourceAssembly = ResourceAssembly$instance;
|
|
179
204
|
|
|
180
205
|
export interface RuntimeAssembly$instance {
|
|
206
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_RuntimeAssembly: never;
|
|
207
|
+
|
|
181
208
|
readonly Name: AssemblyName;
|
|
182
209
|
readonly Path: string;
|
|
183
210
|
}
|
|
@@ -192,36 +219,42 @@ export const RuntimeAssembly: {
|
|
|
192
219
|
export type RuntimeAssembly = RuntimeAssembly$instance;
|
|
193
220
|
|
|
194
221
|
export interface RuntimeAssetGroup$instance {
|
|
195
|
-
readonly
|
|
222
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_RuntimeAssetGroup: never;
|
|
223
|
+
|
|
224
|
+
readonly AssetPaths: IReadOnlyList_1<System_Internal.String>;
|
|
196
225
|
readonly Runtime: string | undefined;
|
|
197
|
-
readonly RuntimeFiles:
|
|
226
|
+
readonly RuntimeFiles: IReadOnlyList_1<RuntimeFile>;
|
|
198
227
|
}
|
|
199
228
|
|
|
200
229
|
|
|
201
230
|
export const RuntimeAssetGroup: {
|
|
202
231
|
new(runtime: string, assetPaths: string[]): RuntimeAssetGroup;
|
|
203
|
-
new(runtime: string, assetPaths:
|
|
204
|
-
new(runtime: string, runtimeFiles:
|
|
232
|
+
new(runtime: string, assetPaths: IEnumerable_1<System_Internal.String>): RuntimeAssetGroup;
|
|
233
|
+
new(runtime: string, runtimeFiles: IEnumerable_1<RuntimeFile>): RuntimeAssetGroup;
|
|
205
234
|
};
|
|
206
235
|
|
|
207
236
|
|
|
208
237
|
export type RuntimeAssetGroup = RuntimeAssetGroup$instance;
|
|
209
238
|
|
|
210
239
|
export interface RuntimeFallbacks$instance {
|
|
211
|
-
|
|
240
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_RuntimeFallbacks: never;
|
|
241
|
+
|
|
242
|
+
Fallbacks: IReadOnlyList_1<string | undefined>;
|
|
212
243
|
Runtime: string;
|
|
213
244
|
}
|
|
214
245
|
|
|
215
246
|
|
|
216
247
|
export const RuntimeFallbacks: {
|
|
217
248
|
new(runtime: string, fallbacks: string[]): RuntimeFallbacks;
|
|
218
|
-
new(runtime: string, fallbacks:
|
|
249
|
+
new(runtime: string, fallbacks: IEnumerable_1<System_Internal.String>): RuntimeFallbacks;
|
|
219
250
|
};
|
|
220
251
|
|
|
221
252
|
|
|
222
253
|
export type RuntimeFallbacks = RuntimeFallbacks$instance;
|
|
223
254
|
|
|
224
255
|
export interface RuntimeFile$instance {
|
|
256
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_RuntimeFile: never;
|
|
257
|
+
|
|
225
258
|
readonly AssemblyVersion: string | undefined;
|
|
226
259
|
readonly FileVersion: string | undefined;
|
|
227
260
|
readonly LocalPath: string | undefined;
|
|
@@ -238,22 +271,26 @@ export const RuntimeFile: {
|
|
|
238
271
|
export type RuntimeFile = RuntimeFile$instance;
|
|
239
272
|
|
|
240
273
|
export interface RuntimeLibrary$instance extends Library {
|
|
241
|
-
readonly
|
|
242
|
-
|
|
243
|
-
readonly
|
|
274
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_RuntimeLibrary: never;
|
|
275
|
+
|
|
276
|
+
readonly NativeLibraryGroups: IReadOnlyList_1<RuntimeAssetGroup>;
|
|
277
|
+
readonly ResourceAssemblies: IReadOnlyList_1<ResourceAssembly>;
|
|
278
|
+
readonly RuntimeAssemblyGroups: IReadOnlyList_1<RuntimeAssetGroup>;
|
|
244
279
|
}
|
|
245
280
|
|
|
246
281
|
|
|
247
282
|
export const RuntimeLibrary: {
|
|
248
|
-
new(type: string, name: string, version: string, hash: string, runtimeAssemblyGroups:
|
|
249
|
-
new(type: string, name: string, version: string, hash: string, runtimeAssemblyGroups:
|
|
250
|
-
new(type: string, name: string, version: string, hash: string, runtimeAssemblyGroups:
|
|
283
|
+
new(type: string, name: string, version: string, hash: string, runtimeAssemblyGroups: IReadOnlyList_1<RuntimeAssetGroup>, nativeLibraryGroups: IReadOnlyList_1<RuntimeAssetGroup>, resourceAssemblies: IEnumerable_1<ResourceAssembly>, dependencies: IEnumerable_1<Dependency>, serviceable: boolean): RuntimeLibrary;
|
|
284
|
+
new(type: string, name: string, version: string, hash: string, runtimeAssemblyGroups: IReadOnlyList_1<RuntimeAssetGroup>, nativeLibraryGroups: IReadOnlyList_1<RuntimeAssetGroup>, resourceAssemblies: IEnumerable_1<ResourceAssembly>, dependencies: IEnumerable_1<Dependency>, serviceable: boolean, path: string, hashPath: string): RuntimeLibrary;
|
|
285
|
+
new(type: string, name: string, version: string, hash: string, runtimeAssemblyGroups: IReadOnlyList_1<RuntimeAssetGroup>, nativeLibraryGroups: IReadOnlyList_1<RuntimeAssetGroup>, resourceAssemblies: IEnumerable_1<ResourceAssembly>, dependencies: IEnumerable_1<Dependency>, serviceable: boolean, path: string, hashPath: string, runtimeStoreManifestName: string): RuntimeLibrary;
|
|
251
286
|
};
|
|
252
287
|
|
|
253
288
|
|
|
254
289
|
export type RuntimeLibrary = RuntimeLibrary$instance;
|
|
255
290
|
|
|
256
291
|
export interface TargetInfo$instance {
|
|
292
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_TargetInfo: never;
|
|
293
|
+
|
|
257
294
|
readonly Framework: string;
|
|
258
295
|
readonly IsPortable: boolean;
|
|
259
296
|
readonly Runtime: string | undefined;
|
|
@@ -269,18 +306,18 @@ export const TargetInfo: {
|
|
|
269
306
|
export type TargetInfo = TargetInfo$instance;
|
|
270
307
|
|
|
271
308
|
export abstract class DependencyContextExtensions$instance {
|
|
272
|
-
static GetDefaultAssemblyNames(self: DependencyContext):
|
|
273
|
-
static GetDefaultAssemblyNames(self: RuntimeLibrary, context: DependencyContext):
|
|
274
|
-
static GetDefaultNativeAssets(self: DependencyContext):
|
|
275
|
-
static GetDefaultNativeAssets(self: RuntimeLibrary, context: DependencyContext):
|
|
276
|
-
static GetDefaultNativeRuntimeFileAssets(self: DependencyContext):
|
|
277
|
-
static GetDefaultNativeRuntimeFileAssets(self: RuntimeLibrary, context: DependencyContext):
|
|
278
|
-
static GetRuntimeAssemblyNames(self: DependencyContext, runtimeIdentifier: string):
|
|
279
|
-
static GetRuntimeAssemblyNames(self: RuntimeLibrary, context: DependencyContext, runtimeIdentifier: string):
|
|
280
|
-
static GetRuntimeNativeAssets(self: DependencyContext, runtimeIdentifier: string):
|
|
281
|
-
static GetRuntimeNativeAssets(self: RuntimeLibrary, context: DependencyContext, runtimeIdentifier: string):
|
|
282
|
-
static GetRuntimeNativeRuntimeFileAssets(self: DependencyContext, runtimeIdentifier: string):
|
|
283
|
-
static GetRuntimeNativeRuntimeFileAssets(self: RuntimeLibrary, context: DependencyContext, runtimeIdentifier: string):
|
|
309
|
+
static GetDefaultAssemblyNames(self: DependencyContext): IEnumerable_1<AssemblyName>;
|
|
310
|
+
static GetDefaultAssemblyNames(self: RuntimeLibrary, context: DependencyContext): IEnumerable_1<AssemblyName>;
|
|
311
|
+
static GetDefaultNativeAssets(self: DependencyContext): IEnumerable_1<System_Internal.String>;
|
|
312
|
+
static GetDefaultNativeAssets(self: RuntimeLibrary, context: DependencyContext): IEnumerable_1<System_Internal.String>;
|
|
313
|
+
static GetDefaultNativeRuntimeFileAssets(self: DependencyContext): IEnumerable_1<RuntimeFile>;
|
|
314
|
+
static GetDefaultNativeRuntimeFileAssets(self: RuntimeLibrary, context: DependencyContext): IEnumerable_1<RuntimeFile>;
|
|
315
|
+
static GetRuntimeAssemblyNames(self: DependencyContext, runtimeIdentifier: string): IEnumerable_1<AssemblyName>;
|
|
316
|
+
static GetRuntimeAssemblyNames(self: RuntimeLibrary, context: DependencyContext, runtimeIdentifier: string): IEnumerable_1<AssemblyName>;
|
|
317
|
+
static GetRuntimeNativeAssets(self: DependencyContext, runtimeIdentifier: string): IEnumerable_1<System_Internal.String>;
|
|
318
|
+
static GetRuntimeNativeAssets(self: RuntimeLibrary, context: DependencyContext, runtimeIdentifier: string): IEnumerable_1<System_Internal.String>;
|
|
319
|
+
static GetRuntimeNativeRuntimeFileAssets(self: DependencyContext, runtimeIdentifier: string): IEnumerable_1<RuntimeFile>;
|
|
320
|
+
static GetRuntimeNativeRuntimeFileAssets(self: RuntimeLibrary, context: DependencyContext, runtimeIdentifier: string): IEnumerable_1<RuntimeFile>;
|
|
284
321
|
}
|
|
285
322
|
|
|
286
323
|
|
|
@@ -7,19 +7,25 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import type { CompilationLibrary } from "../../Microsoft.Extensions.DependencyModel/internal/index.js";
|
|
10
|
-
import type {
|
|
11
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
12
|
-
import type { Boolean as ClrBoolean, Object as ClrObject, String as ClrString } from "@tsonic/dotnet/System.js";
|
|
10
|
+
import type { List_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
11
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
12
|
+
import type { Boolean as ClrBoolean, Object as ClrObject, String as ClrString } from "@tsonic/dotnet/System/internal/index.js";
|
|
13
13
|
|
|
14
14
|
export interface ICompilationAssemblyResolver$instance {
|
|
15
|
-
|
|
15
|
+
readonly __tsonic_iface_Microsoft_Extensions_DependencyModel_Resolution_ICompilationAssemblyResolver: never;
|
|
16
|
+
|
|
17
|
+
TryResolveAssemblyPaths(library: CompilationLibrary, assemblies: List_1<System_Internal.String>): boolean;
|
|
16
18
|
}
|
|
17
19
|
|
|
18
20
|
|
|
19
21
|
export type ICompilationAssemblyResolver = ICompilationAssemblyResolver$instance;
|
|
20
22
|
|
|
21
|
-
export interface AppBaseCompilationAssemblyResolver$instance {
|
|
22
|
-
|
|
23
|
+
export interface AppBaseCompilationAssemblyResolver$instance extends ICompilationAssemblyResolver$instance {
|
|
24
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_Resolution_AppBaseCompilationAssemblyResolver: never;
|
|
25
|
+
|
|
26
|
+
readonly __tsonic_iface_Microsoft_Extensions_DependencyModel_Resolution_ICompilationAssemblyResolver: never;
|
|
27
|
+
|
|
28
|
+
TryResolveAssemblyPaths(library: CompilationLibrary, assemblies: List_1<System_Internal.String>): boolean;
|
|
23
29
|
}
|
|
24
30
|
|
|
25
31
|
|
|
@@ -33,13 +39,15 @@ export interface __AppBaseCompilationAssemblyResolver$views {
|
|
|
33
39
|
As_ICompilationAssemblyResolver(): ICompilationAssemblyResolver$instance;
|
|
34
40
|
}
|
|
35
41
|
|
|
36
|
-
export interface AppBaseCompilationAssemblyResolver$instance extends ICompilationAssemblyResolver$instance {}
|
|
37
|
-
|
|
38
42
|
export type AppBaseCompilationAssemblyResolver = AppBaseCompilationAssemblyResolver$instance & __AppBaseCompilationAssemblyResolver$views;
|
|
39
43
|
|
|
40
44
|
|
|
41
|
-
export interface CompositeCompilationAssemblyResolver$instance {
|
|
42
|
-
|
|
45
|
+
export interface CompositeCompilationAssemblyResolver$instance extends ICompilationAssemblyResolver$instance {
|
|
46
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_Resolution_CompositeCompilationAssemblyResolver: never;
|
|
47
|
+
|
|
48
|
+
readonly __tsonic_iface_Microsoft_Extensions_DependencyModel_Resolution_ICompilationAssemblyResolver: never;
|
|
49
|
+
|
|
50
|
+
TryResolveAssemblyPaths(library: CompilationLibrary, assemblies: List_1<System_Internal.String>): boolean;
|
|
43
51
|
}
|
|
44
52
|
|
|
45
53
|
|
|
@@ -52,12 +60,12 @@ export interface __CompositeCompilationAssemblyResolver$views {
|
|
|
52
60
|
As_ICompilationAssemblyResolver(): ICompilationAssemblyResolver$instance;
|
|
53
61
|
}
|
|
54
62
|
|
|
55
|
-
export interface CompositeCompilationAssemblyResolver$instance extends ICompilationAssemblyResolver$instance {}
|
|
56
|
-
|
|
57
63
|
export type CompositeCompilationAssemblyResolver = CompositeCompilationAssemblyResolver$instance & __CompositeCompilationAssemblyResolver$views;
|
|
58
64
|
|
|
59
65
|
|
|
60
66
|
export interface DotNetReferenceAssembliesPathResolver$instance {
|
|
67
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_Resolution_DotNetReferenceAssembliesPathResolver: never;
|
|
68
|
+
|
|
61
69
|
}
|
|
62
70
|
|
|
63
71
|
|
|
@@ -70,8 +78,12 @@ export const DotNetReferenceAssembliesPathResolver: {
|
|
|
70
78
|
|
|
71
79
|
export type DotNetReferenceAssembliesPathResolver = DotNetReferenceAssembliesPathResolver$instance;
|
|
72
80
|
|
|
73
|
-
export interface PackageCompilationAssemblyResolver$instance {
|
|
74
|
-
|
|
81
|
+
export interface PackageCompilationAssemblyResolver$instance extends ICompilationAssemblyResolver$instance {
|
|
82
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_Resolution_PackageCompilationAssemblyResolver: never;
|
|
83
|
+
|
|
84
|
+
readonly __tsonic_iface_Microsoft_Extensions_DependencyModel_Resolution_ICompilationAssemblyResolver: never;
|
|
85
|
+
|
|
86
|
+
TryResolveAssemblyPaths(library: CompilationLibrary, assemblies: List_1<System_Internal.String>): boolean;
|
|
75
87
|
}
|
|
76
88
|
|
|
77
89
|
|
|
@@ -85,13 +97,15 @@ export interface __PackageCompilationAssemblyResolver$views {
|
|
|
85
97
|
As_ICompilationAssemblyResolver(): ICompilationAssemblyResolver$instance;
|
|
86
98
|
}
|
|
87
99
|
|
|
88
|
-
export interface PackageCompilationAssemblyResolver$instance extends ICompilationAssemblyResolver$instance {}
|
|
89
|
-
|
|
90
100
|
export type PackageCompilationAssemblyResolver = PackageCompilationAssemblyResolver$instance & __PackageCompilationAssemblyResolver$views;
|
|
91
101
|
|
|
92
102
|
|
|
93
|
-
export interface ReferenceAssemblyPathResolver$instance {
|
|
94
|
-
|
|
103
|
+
export interface ReferenceAssemblyPathResolver$instance extends ICompilationAssemblyResolver$instance {
|
|
104
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_Resolution_ReferenceAssemblyPathResolver: never;
|
|
105
|
+
|
|
106
|
+
readonly __tsonic_iface_Microsoft_Extensions_DependencyModel_Resolution_ICompilationAssemblyResolver: never;
|
|
107
|
+
|
|
108
|
+
TryResolveAssemblyPaths(library: CompilationLibrary, assemblies: List_1<System_Internal.String>): boolean;
|
|
95
109
|
}
|
|
96
110
|
|
|
97
111
|
|
|
@@ -105,8 +119,6 @@ export interface __ReferenceAssemblyPathResolver$views {
|
|
|
105
119
|
As_ICompilationAssemblyResolver(): ICompilationAssemblyResolver$instance;
|
|
106
120
|
}
|
|
107
121
|
|
|
108
|
-
export interface ReferenceAssemblyPathResolver$instance extends ICompilationAssemblyResolver$instance {}
|
|
109
|
-
|
|
110
122
|
export type ReferenceAssemblyPathResolver = ReferenceAssemblyPathResolver$instance & __ReferenceAssemblyPathResolver$views;
|
|
111
123
|
|
|
112
124
|
|