I have upgraded windows Azure SDK from V1.7 to V1.8
Before Upgradation part of my config was
<Site name="Web">
<VirtualApplication name="MyprojectService" physicalDirectory="../../Myproject.Hosts.WebHost" />
</Site>
After Upgradation of SDK
I am getting following Error.
Error 1 Cannot find the physical directory 'D:\Projects\Myproject\branches\Release_092012\Hosts\Myproject.Hosts.AzureHost\MyprojectAzureHost\Myproject.Hosts.WebHost' for virtual path Web/MyprojectService/. D:\Projects\Myproject\branches\Release_092012\Hosts\Myproject.Hosts.AzureHost\MyprojectAzureHost\bin\Release\ServiceDefinition.csdef 1 1 MyprojectAzureHost
i have gone through the link Azure Service.Csdef. and I appended "../"to the path:
<Site name="Web">
<VirtualApplication name="MyprojectService" physicalDirectory="../../../Myproject.Hosts.WebHost" />
</Site>
but when i make a package it is getting removed automatically and i am getting the above error again and again.
I have also tried putting the Complete path "D:/Projects/../Myproject.Hosts.WebHost" but no lock.
It was perfectly working in SDK 1.7. but not working in SDK 1.8