@tsonic/efcore-sqlite 10.0.5 → 10.0.8
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 +130 -111
- 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 +10 -8
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +23 -13
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +10 -8
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/internal/index.d.ts +17 -11
- package/Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal/internal/index.d.ts +11 -5
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/internal/index.d.ts +19 -15
- package/Microsoft.EntityFrameworkCore.Sqlite.Internal/internal/index.d.ts +42 -42
- package/Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal/internal/index.d.ts +10 -8
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/internal/index.d.ts +12 -8
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/internal/index.d.ts +116 -38
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/internal/index.d.ts +14 -10
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/internal/index.d.ts +52 -26
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/internal/index.d.ts +22 -12
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.d.ts +16 -6
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +5 -5
- package/Microsoft.Extensions.DependencyModel/internal/index.d.ts +82 -54
- package/Microsoft.Extensions.DependencyModel.Resolution/internal/index.d.ts +22 -20
- package/SQLitePCL/internal/index.d.ts +93 -43
- package/System.Collections.Generic/internal/index.d.ts +9 -9
- package/__internal/extensions/index.d.ts +196 -162
- package/package.json +5 -5
|
@@ -7,11 +7,11 @@ 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
17
|
readonly __tsonic_iface_Microsoft_Extensions_DependencyModel_IDependencyContextReader: never;
|
|
@@ -25,6 +25,8 @@ export interface IDependencyContextReader$instance extends System_Internal.IDisp
|
|
|
25
25
|
export type IDependencyContextReader = IDependencyContextReader$instance;
|
|
26
26
|
|
|
27
27
|
export interface Dependency$instance {
|
|
28
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_Dependency: never;
|
|
29
|
+
|
|
28
30
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
29
31
|
|
|
30
32
|
readonly Name: string;
|
|
@@ -43,38 +45,42 @@ export const Dependency: {
|
|
|
43
45
|
export type Dependency = Dependency$instance;
|
|
44
46
|
|
|
45
47
|
export interface CompilationLibrary$instance extends Library {
|
|
46
|
-
readonly
|
|
47
|
-
|
|
48
|
-
|
|
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>;
|
|
49
53
|
}
|
|
50
54
|
|
|
51
55
|
|
|
52
56
|
export const CompilationLibrary: {
|
|
53
|
-
new(type: string, name: string, version: string, hash: string, assemblies:
|
|
54
|
-
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;
|
|
55
59
|
};
|
|
56
60
|
|
|
57
61
|
|
|
58
62
|
export type CompilationLibrary = CompilationLibrary$instance;
|
|
59
63
|
|
|
60
64
|
export interface CompilationOptions$instance {
|
|
61
|
-
readonly
|
|
65
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_CompilationOptions: never;
|
|
66
|
+
|
|
67
|
+
readonly AllowUnsafe: Nullable_1<System_Internal.Boolean>;
|
|
62
68
|
readonly DebugType: string | undefined;
|
|
63
|
-
readonly Defines:
|
|
64
|
-
readonly DelaySign:
|
|
65
|
-
readonly EmitEntryPoint:
|
|
66
|
-
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>;
|
|
67
73
|
readonly KeyFile: string | undefined;
|
|
68
74
|
readonly LanguageVersion: string | undefined;
|
|
69
|
-
readonly Optimize:
|
|
75
|
+
readonly Optimize: Nullable_1<System_Internal.Boolean>;
|
|
70
76
|
readonly Platform: string | undefined;
|
|
71
|
-
readonly PublicSign:
|
|
72
|
-
readonly WarningsAsErrors:
|
|
77
|
+
readonly PublicSign: Nullable_1<System_Internal.Boolean>;
|
|
78
|
+
readonly WarningsAsErrors: Nullable_1<System_Internal.Boolean>;
|
|
73
79
|
}
|
|
74
80
|
|
|
75
81
|
|
|
76
82
|
export const CompilationOptions: {
|
|
77
|
-
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;
|
|
78
84
|
readonly Default: CompilationOptions;
|
|
79
85
|
};
|
|
80
86
|
|
|
@@ -82,17 +88,19 @@ export const CompilationOptions: {
|
|
|
82
88
|
export type CompilationOptions = CompilationOptions$instance;
|
|
83
89
|
|
|
84
90
|
export interface DependencyContext$instance {
|
|
91
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_DependencyContext: never;
|
|
92
|
+
|
|
85
93
|
readonly CompilationOptions: CompilationOptions;
|
|
86
|
-
readonly CompileLibraries:
|
|
87
|
-
readonly RuntimeGraph:
|
|
88
|
-
readonly RuntimeLibraries:
|
|
94
|
+
readonly CompileLibraries: IReadOnlyList_1<CompilationLibrary>;
|
|
95
|
+
readonly RuntimeGraph: IReadOnlyList_1<RuntimeFallbacks>;
|
|
96
|
+
readonly RuntimeLibraries: IReadOnlyList_1<RuntimeLibrary>;
|
|
89
97
|
readonly Target: TargetInfo;
|
|
90
98
|
Merge(other: DependencyContext): DependencyContext;
|
|
91
99
|
}
|
|
92
100
|
|
|
93
101
|
|
|
94
102
|
export const DependencyContext: {
|
|
95
|
-
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;
|
|
96
104
|
readonly Default: DependencyContext | undefined;
|
|
97
105
|
Load(assembly: Assembly): DependencyContext | undefined;
|
|
98
106
|
};
|
|
@@ -100,7 +108,9 @@ export const DependencyContext: {
|
|
|
100
108
|
|
|
101
109
|
export type DependencyContext = DependencyContext$instance;
|
|
102
110
|
|
|
103
|
-
export interface DependencyContextJsonReader$instance {
|
|
111
|
+
export interface DependencyContextJsonReader$instance extends IDependencyContextReader$instance {
|
|
112
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_DependencyContextJsonReader: never;
|
|
113
|
+
|
|
104
114
|
readonly __tsonic_iface_Microsoft_Extensions_DependencyModel_IDependencyContextReader: never;
|
|
105
115
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
106
116
|
|
|
@@ -119,12 +129,12 @@ export interface __DependencyContextJsonReader$views {
|
|
|
119
129
|
As_IDependencyContextReader(): IDependencyContextReader$instance;
|
|
120
130
|
}
|
|
121
131
|
|
|
122
|
-
export interface DependencyContextJsonReader$instance extends IDependencyContextReader$instance {}
|
|
123
|
-
|
|
124
132
|
export type DependencyContextJsonReader = DependencyContextJsonReader$instance & __DependencyContextJsonReader$views;
|
|
125
133
|
|
|
126
134
|
|
|
127
135
|
export interface DependencyContextLoader$instance {
|
|
136
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_DependencyContextLoader: never;
|
|
137
|
+
|
|
128
138
|
Load(assembly: Assembly): DependencyContext | undefined;
|
|
129
139
|
}
|
|
130
140
|
|
|
@@ -138,6 +148,8 @@ export const DependencyContextLoader: {
|
|
|
138
148
|
export type DependencyContextLoader = DependencyContextLoader$instance;
|
|
139
149
|
|
|
140
150
|
export interface DependencyContextWriter$instance {
|
|
151
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_DependencyContextWriter: never;
|
|
152
|
+
|
|
141
153
|
Write(context: DependencyContext, stream: Stream): void;
|
|
142
154
|
}
|
|
143
155
|
|
|
@@ -150,7 +162,9 @@ export const DependencyContextWriter: {
|
|
|
150
162
|
export type DependencyContextWriter = DependencyContextWriter$instance;
|
|
151
163
|
|
|
152
164
|
export interface Library$instance {
|
|
153
|
-
readonly
|
|
165
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_Library: never;
|
|
166
|
+
|
|
167
|
+
readonly Dependencies: IReadOnlyList_1<Dependency>;
|
|
154
168
|
readonly Hash: string | undefined;
|
|
155
169
|
readonly HashPath: string | undefined;
|
|
156
170
|
readonly Name: string;
|
|
@@ -163,15 +177,17 @@ export interface Library$instance {
|
|
|
163
177
|
|
|
164
178
|
|
|
165
179
|
export const Library: {
|
|
166
|
-
new(type: string, name: string, version: string, hash: string, dependencies:
|
|
167
|
-
new(type: string, name: string, version: string, hash: string, dependencies:
|
|
168
|
-
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;
|
|
169
183
|
};
|
|
170
184
|
|
|
171
185
|
|
|
172
186
|
export type Library = Library$instance;
|
|
173
187
|
|
|
174
188
|
export interface ResourceAssembly$instance {
|
|
189
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_ResourceAssembly: never;
|
|
190
|
+
|
|
175
191
|
Locale: string;
|
|
176
192
|
readonly LocalPath: string | undefined;
|
|
177
193
|
Path: string;
|
|
@@ -187,6 +203,8 @@ export const ResourceAssembly: {
|
|
|
187
203
|
export type ResourceAssembly = ResourceAssembly$instance;
|
|
188
204
|
|
|
189
205
|
export interface RuntimeAssembly$instance {
|
|
206
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_RuntimeAssembly: never;
|
|
207
|
+
|
|
190
208
|
readonly Name: AssemblyName;
|
|
191
209
|
readonly Path: string;
|
|
192
210
|
}
|
|
@@ -201,36 +219,42 @@ export const RuntimeAssembly: {
|
|
|
201
219
|
export type RuntimeAssembly = RuntimeAssembly$instance;
|
|
202
220
|
|
|
203
221
|
export interface RuntimeAssetGroup$instance {
|
|
204
|
-
readonly
|
|
222
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_RuntimeAssetGroup: never;
|
|
223
|
+
|
|
224
|
+
readonly AssetPaths: IReadOnlyList_1<System_Internal.String>;
|
|
205
225
|
readonly Runtime: string | undefined;
|
|
206
|
-
readonly RuntimeFiles:
|
|
226
|
+
readonly RuntimeFiles: IReadOnlyList_1<RuntimeFile>;
|
|
207
227
|
}
|
|
208
228
|
|
|
209
229
|
|
|
210
230
|
export const RuntimeAssetGroup: {
|
|
211
231
|
new(runtime: string, assetPaths: string[]): RuntimeAssetGroup;
|
|
212
|
-
new(runtime: string, assetPaths:
|
|
213
|
-
new(runtime: string, runtimeFiles:
|
|
232
|
+
new(runtime: string, assetPaths: IEnumerable_1<System_Internal.String>): RuntimeAssetGroup;
|
|
233
|
+
new(runtime: string, runtimeFiles: IEnumerable_1<RuntimeFile>): RuntimeAssetGroup;
|
|
214
234
|
};
|
|
215
235
|
|
|
216
236
|
|
|
217
237
|
export type RuntimeAssetGroup = RuntimeAssetGroup$instance;
|
|
218
238
|
|
|
219
239
|
export interface RuntimeFallbacks$instance {
|
|
220
|
-
|
|
240
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_RuntimeFallbacks: never;
|
|
241
|
+
|
|
242
|
+
Fallbacks: IReadOnlyList_1<string | undefined>;
|
|
221
243
|
Runtime: string;
|
|
222
244
|
}
|
|
223
245
|
|
|
224
246
|
|
|
225
247
|
export const RuntimeFallbacks: {
|
|
226
248
|
new(runtime: string, fallbacks: string[]): RuntimeFallbacks;
|
|
227
|
-
new(runtime: string, fallbacks:
|
|
249
|
+
new(runtime: string, fallbacks: IEnumerable_1<System_Internal.String>): RuntimeFallbacks;
|
|
228
250
|
};
|
|
229
251
|
|
|
230
252
|
|
|
231
253
|
export type RuntimeFallbacks = RuntimeFallbacks$instance;
|
|
232
254
|
|
|
233
255
|
export interface RuntimeFile$instance {
|
|
256
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_RuntimeFile: never;
|
|
257
|
+
|
|
234
258
|
readonly AssemblyVersion: string | undefined;
|
|
235
259
|
readonly FileVersion: string | undefined;
|
|
236
260
|
readonly LocalPath: string | undefined;
|
|
@@ -247,22 +271,26 @@ export const RuntimeFile: {
|
|
|
247
271
|
export type RuntimeFile = RuntimeFile$instance;
|
|
248
272
|
|
|
249
273
|
export interface RuntimeLibrary$instance extends Library {
|
|
250
|
-
readonly
|
|
251
|
-
|
|
252
|
-
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>;
|
|
253
279
|
}
|
|
254
280
|
|
|
255
281
|
|
|
256
282
|
export const RuntimeLibrary: {
|
|
257
|
-
new(type: string, name: string, version: string, hash: string, runtimeAssemblyGroups:
|
|
258
|
-
new(type: string, name: string, version: string, hash: string, runtimeAssemblyGroups:
|
|
259
|
-
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;
|
|
260
286
|
};
|
|
261
287
|
|
|
262
288
|
|
|
263
289
|
export type RuntimeLibrary = RuntimeLibrary$instance;
|
|
264
290
|
|
|
265
291
|
export interface TargetInfo$instance {
|
|
292
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_TargetInfo: never;
|
|
293
|
+
|
|
266
294
|
readonly Framework: string;
|
|
267
295
|
readonly IsPortable: boolean;
|
|
268
296
|
readonly Runtime: string | undefined;
|
|
@@ -278,18 +306,18 @@ export const TargetInfo: {
|
|
|
278
306
|
export type TargetInfo = TargetInfo$instance;
|
|
279
307
|
|
|
280
308
|
export abstract class DependencyContextExtensions$instance {
|
|
281
|
-
static GetDefaultAssemblyNames(self: DependencyContext):
|
|
282
|
-
static GetDefaultAssemblyNames(self: RuntimeLibrary, context: DependencyContext):
|
|
283
|
-
static GetDefaultNativeAssets(self: DependencyContext):
|
|
284
|
-
static GetDefaultNativeAssets(self: RuntimeLibrary, context: DependencyContext):
|
|
285
|
-
static GetDefaultNativeRuntimeFileAssets(self: DependencyContext):
|
|
286
|
-
static GetDefaultNativeRuntimeFileAssets(self: RuntimeLibrary, context: DependencyContext):
|
|
287
|
-
static GetRuntimeAssemblyNames(self: DependencyContext, runtimeIdentifier: string):
|
|
288
|
-
static GetRuntimeAssemblyNames(self: RuntimeLibrary, context: DependencyContext, runtimeIdentifier: string):
|
|
289
|
-
static GetRuntimeNativeAssets(self: DependencyContext, runtimeIdentifier: string):
|
|
290
|
-
static GetRuntimeNativeAssets(self: RuntimeLibrary, context: DependencyContext, runtimeIdentifier: string):
|
|
291
|
-
static GetRuntimeNativeRuntimeFileAssets(self: DependencyContext, runtimeIdentifier: string):
|
|
292
|
-
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>;
|
|
293
321
|
}
|
|
294
322
|
|
|
295
323
|
|
|
@@ -7,23 +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
16
|
|
|
17
|
-
TryResolveAssemblyPaths(library: CompilationLibrary, assemblies:
|
|
17
|
+
TryResolveAssemblyPaths(library: CompilationLibrary, assemblies: List_1<System_Internal.String>): boolean;
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
export type ICompilationAssemblyResolver = ICompilationAssemblyResolver$instance;
|
|
22
22
|
|
|
23
|
-
export interface AppBaseCompilationAssemblyResolver$instance {
|
|
23
|
+
export interface AppBaseCompilationAssemblyResolver$instance extends ICompilationAssemblyResolver$instance {
|
|
24
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_Resolution_AppBaseCompilationAssemblyResolver: never;
|
|
25
|
+
|
|
24
26
|
readonly __tsonic_iface_Microsoft_Extensions_DependencyModel_Resolution_ICompilationAssemblyResolver: never;
|
|
25
27
|
|
|
26
|
-
TryResolveAssemblyPaths(library: CompilationLibrary, assemblies:
|
|
28
|
+
TryResolveAssemblyPaths(library: CompilationLibrary, assemblies: List_1<System_Internal.String>): boolean;
|
|
27
29
|
}
|
|
28
30
|
|
|
29
31
|
|
|
@@ -37,15 +39,15 @@ export interface __AppBaseCompilationAssemblyResolver$views {
|
|
|
37
39
|
As_ICompilationAssemblyResolver(): ICompilationAssemblyResolver$instance;
|
|
38
40
|
}
|
|
39
41
|
|
|
40
|
-
export interface AppBaseCompilationAssemblyResolver$instance extends ICompilationAssemblyResolver$instance {}
|
|
41
|
-
|
|
42
42
|
export type AppBaseCompilationAssemblyResolver = AppBaseCompilationAssemblyResolver$instance & __AppBaseCompilationAssemblyResolver$views;
|
|
43
43
|
|
|
44
44
|
|
|
45
|
-
export interface CompositeCompilationAssemblyResolver$instance {
|
|
45
|
+
export interface CompositeCompilationAssemblyResolver$instance extends ICompilationAssemblyResolver$instance {
|
|
46
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_Resolution_CompositeCompilationAssemblyResolver: never;
|
|
47
|
+
|
|
46
48
|
readonly __tsonic_iface_Microsoft_Extensions_DependencyModel_Resolution_ICompilationAssemblyResolver: never;
|
|
47
49
|
|
|
48
|
-
TryResolveAssemblyPaths(library: CompilationLibrary, assemblies:
|
|
50
|
+
TryResolveAssemblyPaths(library: CompilationLibrary, assemblies: List_1<System_Internal.String>): boolean;
|
|
49
51
|
}
|
|
50
52
|
|
|
51
53
|
|
|
@@ -58,12 +60,12 @@ export interface __CompositeCompilationAssemblyResolver$views {
|
|
|
58
60
|
As_ICompilationAssemblyResolver(): ICompilationAssemblyResolver$instance;
|
|
59
61
|
}
|
|
60
62
|
|
|
61
|
-
export interface CompositeCompilationAssemblyResolver$instance extends ICompilationAssemblyResolver$instance {}
|
|
62
|
-
|
|
63
63
|
export type CompositeCompilationAssemblyResolver = CompositeCompilationAssemblyResolver$instance & __CompositeCompilationAssemblyResolver$views;
|
|
64
64
|
|
|
65
65
|
|
|
66
66
|
export interface DotNetReferenceAssembliesPathResolver$instance {
|
|
67
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_Resolution_DotNetReferenceAssembliesPathResolver: never;
|
|
68
|
+
|
|
67
69
|
}
|
|
68
70
|
|
|
69
71
|
|
|
@@ -76,10 +78,12 @@ export const DotNetReferenceAssembliesPathResolver: {
|
|
|
76
78
|
|
|
77
79
|
export type DotNetReferenceAssembliesPathResolver = DotNetReferenceAssembliesPathResolver$instance;
|
|
78
80
|
|
|
79
|
-
export interface PackageCompilationAssemblyResolver$instance {
|
|
81
|
+
export interface PackageCompilationAssemblyResolver$instance extends ICompilationAssemblyResolver$instance {
|
|
82
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_Resolution_PackageCompilationAssemblyResolver: never;
|
|
83
|
+
|
|
80
84
|
readonly __tsonic_iface_Microsoft_Extensions_DependencyModel_Resolution_ICompilationAssemblyResolver: never;
|
|
81
85
|
|
|
82
|
-
TryResolveAssemblyPaths(library: CompilationLibrary, assemblies:
|
|
86
|
+
TryResolveAssemblyPaths(library: CompilationLibrary, assemblies: List_1<System_Internal.String>): boolean;
|
|
83
87
|
}
|
|
84
88
|
|
|
85
89
|
|
|
@@ -93,15 +97,15 @@ export interface __PackageCompilationAssemblyResolver$views {
|
|
|
93
97
|
As_ICompilationAssemblyResolver(): ICompilationAssemblyResolver$instance;
|
|
94
98
|
}
|
|
95
99
|
|
|
96
|
-
export interface PackageCompilationAssemblyResolver$instance extends ICompilationAssemblyResolver$instance {}
|
|
97
|
-
|
|
98
100
|
export type PackageCompilationAssemblyResolver = PackageCompilationAssemblyResolver$instance & __PackageCompilationAssemblyResolver$views;
|
|
99
101
|
|
|
100
102
|
|
|
101
|
-
export interface ReferenceAssemblyPathResolver$instance {
|
|
103
|
+
export interface ReferenceAssemblyPathResolver$instance extends ICompilationAssemblyResolver$instance {
|
|
104
|
+
readonly __tsonic_type_Microsoft_Extensions_DependencyModel_Resolution_ReferenceAssemblyPathResolver: never;
|
|
105
|
+
|
|
102
106
|
readonly __tsonic_iface_Microsoft_Extensions_DependencyModel_Resolution_ICompilationAssemblyResolver: never;
|
|
103
107
|
|
|
104
|
-
TryResolveAssemblyPaths(library: CompilationLibrary, assemblies:
|
|
108
|
+
TryResolveAssemblyPaths(library: CompilationLibrary, assemblies: List_1<System_Internal.String>): boolean;
|
|
105
109
|
}
|
|
106
110
|
|
|
107
111
|
|
|
@@ -115,8 +119,6 @@ export interface __ReferenceAssemblyPathResolver$views {
|
|
|
115
119
|
As_ICompilationAssemblyResolver(): ICompilationAssemblyResolver$instance;
|
|
116
120
|
}
|
|
117
121
|
|
|
118
|
-
export interface ReferenceAssemblyPathResolver$instance extends ICompilationAssemblyResolver$instance {}
|
|
119
|
-
|
|
120
122
|
export type ReferenceAssemblyPathResolver = ReferenceAssemblyPathResolver$instance & __ReferenceAssemblyPathResolver$views;
|
|
121
123
|
|
|
122
124
|
|