I would like to set up a dev environment using Visual Studio Code. I'm able to do that with the help of Salesforce Extension Pack. I want to fetch all custom objects in the VS Code. How Can I achieve this?
To achieve this goal in the VS Code you can use this ways. Please find below
Org browser Extention => You can import selected components like custom objects.
Related
I want to give the code snippet extension support for my custom blazor controls to add my codes in the Visual Studio Code editor (.razor files) for my customers. So, I have used the below link to implement this.
https://code.visualstudio.com/api/language-extensions/snippet-guide
Now, my custom code snippets have been added as I expected when to click the ENTER key after typing my prefix value. But, I want to add the namespace also for my controls which are added from the code snippet at the same time of code snippet added. In the above link that gives the options prefix, body and description only. There is no namespace option available. Could you please suggest to me how can I add the Namespace in the razor at the time of add the code snippets?
Also, I want to add the required assemblies at the same time to run my controls to reduce the manual work. Could you please suggest to me this also?
Thanks,
Ganesan R.
Is it possible to create an extension with user interface for visual studio code.
I like to have an editor for a json file and I like to have some UI for it.
Like google chrome extensions with HTML/CSS/JAVASCRIPT.
Does VS Code supports these kind of extensions?
No, VSCode does not provide this level of extension integration. However, if you still plan to edit the JSON using the text editor, but want to "render" it in some way, that is possible. You can use a TextDocumentContentProvider to provide a read-only view of your JSON file. For a similar example, look at the CSS Properties Preview example extension.
I included different Tiles/Reports to my WebApp from PowerBI, according to this documentation:
https://powerbi.microsoft.com/en-us/documentation/powerbi-developer-integrate-a-power-bi-tile-or-report/#gettile
Everything runs fine, but when I include a Custom Visual Tile, it appears an error Message "this visual type is not yet supported or cannot be displayed due to security reasons".
Does anybody know how to solve that or any suggestions ? Is there an option/property for custom visuals ?
This is not yet supported. We're are aware of this limitation and will provide a solution. Could you create an item on ideas.powerbi.com to track this ask?
I want to build an web application(ASP.NET MVC 6) that can add modules/plugins without having to rewrite my source code.
Already read about MEF and Areas but are not helping much.
Someone who has overcome this problem that can help me?
Depends on which part of the web application you are targeting.
1.If it's in the request pipeline you would make a Middleware package.
2.It's it's in HTML you would make a TAG Helper package.
3.If it's an intrinsic functionality you would extend appropriate classes and throw them into a package. An example of this would be helpful extension methods or methods to add claims given a claims principal.
4.If you want to go even further you could create your own Visual Studio templates that you can use to pre-fill your options upon creation.
I tried much exploring the file/database table which is responsible for showing labels for a particular module in studio.
I looked at en_Us.lang files at all places including cache. But I don't see there a dependency.
Thanks in advance!
Core Module Labes are defined in modules/{modulename}/language/{languagekey}.lang.php
If you want to add or change them you should do that in the custom area you can find the Documentation for the Language Extension Framework: