VISUAL STUDIO Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/visual-studio/ Microsoft Dynamics CRM . Microsoft Power Platform Thu, 04 Jun 2020 08:24:34 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 https://i0.wp.com/microsoftdynamics.in/wp-content/uploads/2020/04/cropped-Microsoftdynamics365-blogs.png?fit=32%2C32 VISUAL STUDIO Archives - Microsoft Dynamics 365 Blog http://microsoftdynamics.in/category/visual-studio/ 32 32 176351444 How to Publish a Website Over Microsoft Azure Web App http://microsoftdynamics.in/2017/12/19/how-to-publish-a-website-over-microsoft-azure-web-app/ http://microsoftdynamics.in/2017/12/19/how-to-publish-a-website-over-microsoft-azure-web-app/#comments Tue, 19 Dec 2017 10:51:00 +0000 http://microsoftdynamics.in/2017/12/19/how-to-publish-a-website-over-microsoft-azure-web-app/ To publish your website over Microsoft azure web app just follow the below steps

Prerequisites : -
1) Azure account with active subscription - here 
2) Sample Website - you can use this sample 

Step 1 - Login into Azure Account and Click on New button on Left navigation bar

The post How to Publish a Website Over Microsoft Azure Web App appeared first on Microsoft Dynamics 365 Blog.

]]>
To publish your website over Microsoft azure web app just follow the below steps
Prerequisites : –
1) Azure account with active subscription – here
2) Sample Website – you can use this sample
 
Step 1 – Login into Azure Account and Click on New button on Left navigation bar
 
Step 2 – Click on Web + Mobile and then click Web App option

 

Step 3 – Enter your desired Unique App name , Suscription , Resource group ,  and App service plan/Location And Click on Create

Now your web app is deploying you can see its progress status in notification bar

 

 
Step 4 – With in few minutes your website will be deployed. Now, click on “Go to Resource” button in notification bar to navigate to your deployed App

 

 
Step 5 – Click on Get published button on the ribbon to get the Publisher setting of your Web App

 

Step 6 – Keep/Save the published file in your system (it will be used in further steps)

 

Step 7 – Now open your web project that you want to publish in Visual studio -> right click on it -> click on publish option

 

Step 8 – A Dialogue will appear click on Import option

 

Step 9 – Browse to the file downloaded in Step 6 and press on ok button

 


Step 9 – You will observe that all the fields will be auto populated. Now, click on Publish button

Step 10 – After some time you will see a success message and status as Publish succeed

Step 11 – Now navigate back to your azure web app and click on browse button

 

Your Website is Published

Happy Coding 😊

The post How to Publish a Website Over Microsoft Azure Web App appeared first on Microsoft Dynamics 365 Blog.

]]>
http://microsoftdynamics.in/2017/12/19/how-to-publish-a-website-over-microsoft-azure-web-app/feed/ 3 2766
ERROR : Package/Publish task Microsoft.Web.Publishing.Tasks.CreateProviderList failed to load Web Deploy assemblies. Microsoft Web Deploy is not correctly installed on this machine. Microsoft Web Deploy v3 or higher is recommended. while publishing web application http://microsoftdynamics.in/2015/11/24/error-package-publish-task-microsoft-web-publishing-tasks-createproviderlist-failed-to-load-web-deploy-assemblies-microsoft-web-deploy-is-not-correctly-installed-on-this-machine-microsoft-web-depl/ Tue, 24 Nov 2015 08:50:00 +0000 http://microsoftdynamics.in/2015/11/24/error-package-publish-task-microsoft-web-publishing-tasks-createproviderlist-failed-to-load-web-deploy-assemblies-microsoft-web-deploy-is-not-correctly-installed-on-this-machine-microsoft-web-depl/ Hi I got below error while publishing a web application . Error : Package/Publish task Microsoft.Web.Publishing.Tasks.CreateProviderList failed to load Web Deploy assemblies. Microsoft Web Deploy is not correctly installed on this machine. Microsoft Web Deploy v3 or higher is recommended. It resolved after downloading web platform installer and installing web deploy V3 or higher . 1....

The post ERROR : Package/Publish task Microsoft.Web.Publishing.Tasks.CreateProviderList failed to load Web Deploy assemblies. Microsoft Web Deploy is not correctly installed on this machine. Microsoft Web Deploy v3 or higher is recommended. while publishing web application appeared first on Microsoft Dynamics 365 Blog.

]]>
Hi I got below error while publishing a web application .

Error : Package/Publish task Microsoft.Web.Publishing.Tasks.CreateProviderList failed to load Web Deploy assemblies. Microsoft Web Deploy is not correctly installed on this machine. Microsoft Web Deploy v3 or higher is recommended.

It resolved after downloading web platform installer and installing web deploy V3 or higher .

1. download Web Platform Installer .

2. After installing search  WEB DEPLOY in search Box

3. Add web deploy and click Install .
Now Publish the project , it will be done successfully . Hope it help .
Thanks

f


SOURCE : JUST2CODE.IN Subscribe to our YouTube channel : https://www.youtube.com/user/TheRussell2012

The post ERROR : Package/Publish task Microsoft.Web.Publishing.Tasks.CreateProviderList failed to load Web Deploy assemblies. Microsoft Web Deploy is not correctly installed on this machine. Microsoft Web Deploy v3 or higher is recommended. while publishing web application appeared first on Microsoft Dynamics 365 Blog.

]]>
2785
DYNAMICALLY HIDE MULTIPLE FIELDS / ATTRIBUTE IN A FORM USING JAVASCRIPT IN MSCRM 2011 , 2013 http://microsoftdynamics.in/2014/02/18/dynamically-hide-multiple-fields-attribute-in-a-form-using-javascript-in-mscrm-2011-2013/ Tue, 18 Feb 2014 07:39:00 +0000 http://microsoftdynamics.in/2014/02/18/dynamically-hide-multiple-fields-attribute-in-a-form-using-javascript-in-mscrm-2011-2013/ function fields() {     var i;     for (i = 1 ; i <= 20; i++) {         //convert i into string         var j = i.toString();         var obj = “new_field” + j;         alert(obj);         Xrm.Page.ui.controls.get(obj).setVisible( false);     } } SOURCE : JUST2CODE.IN Subscribe to our YouTube channel : https://www.youtube.com/user/TheRussell2012

The post DYNAMICALLY HIDE MULTIPLE FIELDS / ATTRIBUTE IN A FORM USING JAVASCRIPT IN MSCRM 2011 , 2013 appeared first on Microsoft Dynamics 365 Blog.

]]>
function fields() {
    var i;
    for (i = 1 ; i <= 20; i++) {
        //convert i into string
        var j = i.toString();
        var obj = “new_field” + j;
        alert(obj);

        Xrm.Page.ui.controls.get(obj).setVisible( false);
    }
}


SOURCE : JUST2CODE.IN
Subscribe to our YouTube channel : https://www.youtube.com/user/TheRussell2012

The post DYNAMICALLY HIDE MULTIPLE FIELDS / ATTRIBUTE IN A FORM USING JAVASCRIPT IN MSCRM 2011 , 2013 appeared first on Microsoft Dynamics 365 Blog.

]]>
2839
INSTALL , CONFIGURE & TESTING VISUAL STUDIO REMOTE DEBUGGER 2012 in MS CRM 2011 http://microsoftdynamics.in/2014/02/15/install-configure-testing-visual-studio-remote-debugger-2012-in-ms-crm-2011/ Sat, 15 Feb 2014 11:12:00 +0000 http://microsoftdynamics.in/2014/02/15/install-configure-testing-visual-studio-remote-debugger-2012-in-ms-crm-2011/ Download Remote Debug 2012 We can Download it from it official site “  http://www.microsoft.com/en-in/download/details.aspx?id=38184 “ Installing Visual Studio Remote Debugger component on the CRM Server. Installation starts.    Configure the Remote Debugger component by running the Visual Studio Remote Debugger Configuration Wizard. Set up options and permissions by clicking in Tools->Options: Within Options Window, click on Permissions button to set...

The post INSTALL , CONFIGURE & TESTING VISUAL STUDIO REMOTE DEBUGGER 2012 in MS CRM 2011 appeared first on Microsoft Dynamics 365 Blog.

]]>

Download Remote Debug 2012
  1. We can Download it from it official site “  http://www.microsoft.com/en-in/download/details.aspx?id=38184 “
  2. 1
  3. Installing Visual Studio Remote Debugger component on the CRM Server.
    1
  4. Installation starts. 
    1 
  5. Configure the Remote Debugger component by running the Visual Studio Remote Debugger Configuration Wizard.
    1
  6. Set up options and permissions by clicking in Tools->Options:
    1
  7. Within Options Window, click on Permissions button to set up the users that will be allowed to remotely debug on the server:
    1

  8. Connecting to Remote DebuggerA. Start Visual Studio 2012 on the local machine.B. Open solution of the process you want to debug.C. Click Debug->Attach to process

    1
  9. Type qualifier, in my case “win-aaqsdc7r5pf” (the qualifier is shown in console of remote debugger, it’s in format machinename:port
  10. We can also find on Host computer , which computer is connected .
    1
  11. Click refresh a  Select remote process from list offered a  Attach to that process.


SOURCE : JUST2CODE.IN
Subscribe to our YouTube channel : https://www.youtube.com/user/TheRussell2012

The post INSTALL , CONFIGURE & TESTING VISUAL STUDIO REMOTE DEBUGGER 2012 in MS CRM 2011 appeared first on Microsoft Dynamics 365 Blog.

]]>
2842
How to Enable JavaScript Intellisense in any version of Visual Studio http://microsoftdynamics.in/2014/02/15/how-to-enable-javascript-intellisense-in-any-version-of-visual-studio/ http://microsoftdynamics.in/2014/02/15/how-to-enable-javascript-intellisense-in-any-version-of-visual-studio/#comments Sat, 15 Feb 2014 06:28:00 +0000 http://microsoftdynamics.in/2014/02/15/how-to-enable-javascript-intellisense-in-any-version-of-visual-studio/ Download The Required JS Files from here . Paste “XrmPage-vsdoc.js” file to your C Drive. Open Visual Studio and press Ctrl + N and select Script tab and then open javascript file.   Paste this part of code on the top of your file without quotes “///<reference path=”c:/XrmPage-vsdoc.js” />”. Now start writing your JScript code....

The post How to Enable JavaScript Intellisense in any version of Visual Studio appeared first on Microsoft Dynamics 365 Blog.

]]>
  1. Download The Required JS Files from here .
  2. Paste “XrmPage-vsdoc.js” file to your C Drive.
  3. Open Visual Studio and press Ctrl + N and select Script tab and then open javascript file.

     

  4. Paste this part of code on the top of your file without quotes “///<reference path=”c:/XrmPage-vsdoc.js” />”.
  5. Now start writing your JScript code.
  6. Now you have Intellisense Enabled JScript Visual Studio for MS CRM 2011 & 2013.


SOURCE : MSCRM.com

The post How to Enable JavaScript Intellisense in any version of Visual Studio appeared first on Microsoft Dynamics 365 Blog.

]]>
http://microsoftdynamics.in/2014/02/15/how-to-enable-javascript-intellisense-in-any-version-of-visual-studio/feed/ 1 2844