We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c51d61c commit c0b421bCopy full SHA for c0b421b
src/assets.ts
@@ -285,7 +285,7 @@ export class AssetGenerator {
285
}
286
287
288
-function findNetCoreAppTargetFramework(project: protocol.MSBuildProject) {
+function findNetCoreAppTargetFramework(project: protocol.MSBuildProject): protocol.TargetFramework {
289
return project.TargetFrameworks.find(tf => tf.ShortName.startsWith('netcoreapp'));
290
291
@@ -325,6 +325,8 @@ function containsDotNetCoreProjects(workspaceInfo: protocol.WorkspaceInformation
325
if (workspaceInfo.MsBuild && findExecutableMSBuildProjects(workspaceInfo.MsBuild.Projects).length > 0) {
326
return true;
327
328
+
329
+ return false;
330
331
332
0 commit comments