IdentityServer / IdentityServer3.Admin.EntityFramework

Apache License 2.0
12 stars 30 forks source link

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

Open BruceHunter opened 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>

`