You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, I have a problem publishing an asp.net 4 app using angular, ts 1.8 from visual studio.
Since with ts 1.8 is possible to add a tsconfig file in asp.net 4 projects too, I added it and configured it to create a single output file this way
All works fine until I try to deploy to an azure app service using web deploy: added it, configured, but when I try to deploy I have this error:
Copying file App\Maintenance.js to obj\Debug\Package\PackageTmp\App\Maintenance.js failed. Could not find file 'App\Maintenance.js'.
This is one the ts files that are compiled in the single file 'application.js'.
If my ts installation is not broken, looks like web deploy still continues to look inside the msbuild project settings for the deployment settings of ts files, but adding tsconfig.json file this changes, and when tsconfig file is present typescript project settings are disabled.
Proof of this is that if I rename the tsconfig file, reapply settings via project settings and try to deploy, everything works fine.
Is this normal?
The text was updated successfully, but these errors were encountered:
Hi, I have a problem publishing an asp.net 4 app using angular, ts 1.8 from visual studio.
Since with ts 1.8 is possible to add a tsconfig file in asp.net 4 projects too, I added it and configured it to create a single output file this way
All works fine until I try to deploy to an azure app service using web deploy: added it, configured, but when I try to deploy I have this error:
Copying file App\Maintenance.js to obj\Debug\Package\PackageTmp\App\Maintenance.js failed. Could not find file 'App\Maintenance.js'.
This is one the ts files that are compiled in the single file 'application.js'.
If my ts installation is not broken, looks like web deploy still continues to look inside the msbuild project settings for the deployment settings of ts files, but adding tsconfig.json file this changes, and when tsconfig file is present typescript project settings are disabled.
Proof of this is that if I rename the tsconfig file, reapply settings via project settings and try to deploy, everything works fine.
Is this normal?
The text was updated successfully, but these errors were encountered: