UNPKG

snyk-nuget-plugin

Version:
12 lines (11 loc) 574 B
import { AssemblyVersions } from './types'; type SdkInfo = { sdkVersion: string; sdkPath: string; }; export declare const PACKAGE_OVERRIDES_FILE = "data/PackageOverrides.txt"; export declare const PACKS_PATH = "/packs/Microsoft.NETCore.App.Ref/"; export declare function extractSdkInfo(projectPath: string): Promise<SdkInfo>; export declare function findLatestMatchingVersion(input: string, sdkVersion: string): string; export declare function generateRuntimeAssemblies(projectPath: string, assemblyVersions: AssemblyVersions): Promise<AssemblyVersions>; export {};