IdentityServer / IdentityServer3.Admin

Sample Admin UI for IdentityServer3
Apache License 2.0
75 stars 77 forks source link

Host Project Visual Studio 2017 Project file cannot be loaded #70

Closed BruceHunter closed 7 years ago

BruceHunter commented 7 years ago

<Import Project="$(VSToolsPath)\WebApplications\Microsoft.WebApplication.targets" Condition="'$(VSToolsPath)' != ''" />

was not found.

BruceHunter commented 7 years ago

I fixed the issue by adding the following to the Host proj xml `

10.0
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>

`

psmyda commented 7 years ago

Thanks @BruceHunter !!!

BruceHunter commented 7 years ago

No problem.