ligershark / sidewafflev2

Other
30 stars 11 forks source link

SideWaffle Creator can’t handle an Azure Resource Group project template #22

Closed managedcoder closed 6 years ago

managedcoder commented 6 years ago

SideWaffle Creator can’t handle an Azure Resource Group project template – It creates the VS extension but I get a “File Not Found” error when I use my VS extension in the experimental instance of VS and no project files show up.

sayedihashimi commented 6 years ago

This is usually related to primaryOutputs in template.json is that set correctly?

managedcoder commented 6 years ago

I think I have that right… you can see it below. Something to note is the fact that the ARM project template does not have curly brackets in it. That’s just the way it is from the VS .csproj file itself. I actually tried it with and without curlys to no avail. Is that lack of curlys problematic?

"guids": [ "{81e4fff2-9d54-40c4-834e-49fab9a762b0}", // MobileBaseline "68d82a27-f8ea-4550-9ac7-766cc4ca164e", // MobileBaseline.ARM "{3b3622a0-8322-4dcd-9e5c-8cc6e17e521f}", // MobileBaseline.Droid "{c28c757a-4ec0-4966-80bc-0e4bdf5d288c}", // MobileBaseline.iOS "{BB5B1143-727E-467E-BC95-AD70BCD555B8}", // MobileBaseline.UWP "{9854193d-8d38-4dbd-935e-658417ed920d}" // MobileBaselineService ], "primaryOutputs": [ { "path": "MobileBaseline\MobileBaseline.csproj" }, { "path": "MobileBaseline.ARM\MobileBaseline.ARM.csproj" }, { "path": "Droid\MobileBaseline.Droid.csproj" }, { "path": "iOS\MobileBaseline.iOS.csproj" }, { "path": "UWP\MobileBaseline.UWP.csproj" }, { "path": "MobileBaselineService\MobileBaselineService.csproj" } ]

From: Sayed Ibrahim Hashimi [mailto:notifications@github.com] Sent: Thursday, November 2, 2017 2:33 PM To: ligershark/sidewafflev2 sidewafflev2@noreply.github.com Cc: Russ Williams ruwill@microsoft.com; Author author@noreply.github.com Subject: Re: [ligershark/sidewafflev2] SideWaffle Creator can’t handle an Azure Resource Group project template (#22)

This is usually related to primaryOutputs in template.json is that set correctly?

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fligershark%2Fsidewafflev2%2Fissues%2F22%23issuecomment-341517744&data=02%7C01%7Cruwill%40microsoft.com%7C833d2ca787494f2e935d08d52220338e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C636452444053494795&sdata=2nJTIXL%2FIbD4S6ziTFHnE247ZGzwmSNsyslacAAGk5c%3D&reserved=0, or mute the threadhttps://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fgithub.com%2Fnotifications%2Funsubscribe-auth%2FAQ8i4otnjd2pXc0COjBvUWH-4DnJYKF3ks5sygrygaJpZM4QKpaN&data=02%7C01%7Cruwill%40microsoft.com%7C833d2ca787494f2e935d08d52220338e%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C636452444053494795&sdata=gHxQdq43oHVHHW0LNzNcdBWEcCoDaAU%2B7RO3MNAmqbs%3D&reserved=0.

managedcoder commented 6 years ago

You were correct! I had primaryOutput set incorrectly.