Library not registered error in Visual Studio 2013.

Whenever I attempt to build a solution, build multiple projects, or even run a program (with debugging) in visual studio 2013, I receive the error below.
"Library not registered. (Exception from HRESULT: 0x8002801D (TYPE_E_LIBNOTREGISTERED))"
I have attempted to fix this by repairing my Visual Studio installation, but without success. 
I believe the issue to be with Visual Studio itself, though, because this happens with every solution I have tried it with.
Any assistance in resolving this issue would be most appreciated.

Hi ndowney,
Based on your issue, could you please tell me if you install some other tools on your machine before you get the ""Library not registered" error?
(1) If yes, please you disable or un-install these tools and then build solution/project check this issue again.
(2)If no, to check if the issue is related to the VS IDE, please refer the following steps to check this error message.
(2.1) I suggest you could try the following commands to check if it is helpful.
a.  Run devenv /Safemode to see if you can apply it correctly. This can eliminate the possibility that third party Add-ins or packages are causing problems.
b. Run devenv /Resetsettings to eliminate the cause of corrupted settings.
c. Run devenv /ResetSkipPkgs in Command Prompt.
If above still cannot work, try use this command again: devenv /resetsuerdata
(2.2) If the above suggestion still could not help you, maybe you will need to re-install the VS2013 and then check this issue again.
If you have any latest message about your issue, please tell me.
Best Regards,
We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
Click
HERE to participate the survey.

Similar Messages

  • Class not registered error in Visual Studio 2003

    Post Author: LenReinhart
    CA Forum: .NET
    I have an report that has been running in an application for the last couple years. There is an error in the application that I fixed, but now the report  is not running against the production database and I wanted to look at a report in the editor and double clicked on the report in Visual Studio 2003. I got an error pop up "Class not registered" but that was it, no option to enter a registration code or anything. I had previously registered but tried going through that process and was told that it had been previously registered. I developed this report on this machine, so I am wondering if some patch that I applied caused this problem. It has been awhile since I have opened this report in an editor.Any light you can shine on this would be appreciated. Thanks,Len

    Post Author: MJ@BOBJ
    CA Forum: .NET
    Typically that error is referring to a COM dll that is not being loaded because it is not registered on the system.  Usually, that error message will give you a dll name, or a PROGID, or something.....was anything else provided in the error?
    In order for a file to be unregistered, something might have been uninstalled (or a failed install) that could have caused this issue.  I did a search in kbase and found a article that may help, at least it refers to a dll that you can try to register.
    Perhaps doing a reinstall may resolve the error.
    -MJ

  • XML Parsing Error: not well-formed (C# Visual Studio 2013)

    I am working on a project in visual studio that imports a csv, and exports an xml file. I'd like to be able to get the code to work as xml and html, and view it in a browser. I am getting this error when I load the xml file into a browser:
    Firefox
    XML Parsing Error: not well-formed Location: file:///C:/Users/fenwky/XmlDoc.xml Line Number 2, Column 6:?> -----^
    Chrome
    This page contains the following errors: error on line 2 at column 16: colon are forbidden from PI names 'xsl:transform'
    This is what my c# code looks like in visual studio 2013:
    // Create a procesing instruction.
    XmlProcessingInstruction newPI;
    // Stylesheet
    String PItext = "<abc:stylesheet xmlns:abc=\"http://www.w3.org/1999/XSL/Transform\" version=\"1.0\">";
    newPI = doc.CreateProcessingInstruction("abc:stylesheet", PItext);
    doc.InsertAfter(newPI, doc.FirstChild);
    // Save document
    doc.Save(xmlfilename);

    Hi
    Kylee Fenwick,
    Could you show us your CSV file? And the code how do you imports a csv and exports an xml file?
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.
    Hi Kristen,
    Thank you in advance for your healp. Here is my CSV file:
    Item Code;Item Description;Current Count;On Order
    A0001;"Wheels, Horse on";5;No
    A0002;"Wheels, Elephant on";2;No
    A0003;"Wheels, Dog on";0;Yes
    A0004;"Wheels, Seal on";3;No
    A0005;"Wheels, Bear on";7;No
    A0006;"Bear, Teddy";2;Yes
    A0007;"Clown,";5;No
    A0008;"Puppy(crouch),";3;No
    A0009;"Puppy(stand),";2;No
    A0010;"Puppy(jump),";2;Yes
    A0011;"Pupp(lying),";1;Yes
    A0012;"(50), Cart with Blocks";0;Yes
    A0013;"(100), Cart with Blocks";5;No
    A0014;"(200), Cart with Blocks";4;No
    A0015;"Carriage, Train with 0";12;No
    A0016;"Carriage, Train with 1";10;No
    A0017;"Carriage, Train with 2";5;Yes
    A0018;"Carriage, Train with 3";4;Yes
    A0019;"Carriage, Train with 4";5;No
    A0020;"Carriage, Train with 5";2;No
    A0021;"(20), Building Blocks";15;No
    A0022;"(30), Building Blocks";13;No
    A0023;"(40), Building Blocks";16;No
    A0024;"(50), Building Blocks";5;Yes
    A0025;"(100), Building Blocks";2;Yes
    A0026;"(200), Building Blocks";8;No
    A0027;"Windmill,";5;No
    A0028;"Farmhouse,";6;Yes
    A0029;"Fencing,";22;Yes
    A0030;"Barn,";12;Yes
    A0031;"Tractor,";6;Yes
    A0032;"Animals,";3;Yes
    A0033;"House,";9;No
    A0034;"Car,";12;No
    A0035;"(small), Building";4;No
    A0036;"(medium), Building";3;No
    A0037;"(tall), Building";4;No
    A0038;"Shop,";7;No
    A0039;"Lights, Traffic";5;Yes
    A0040;"Station, Petrol";4;Yes
    And here is my code:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.IO;
    using System.Data.OleDb;
    using System.Xml;
    using System.Xml.Xsl;
    using System.Xml.XPath;
    namespace CSVImporter
    public partial class CSVImporter : Form
    //const string xmlfilename = @"C:\Users\fenwky\XmlDoc.xml"; - file name and location of xml file
    const string xmlfilename = @"C:\Users\fenwky\XmlDoc.xml";
    // New code
    //const string xmlfilename = @"C:\Users\fenwky\XmlDoc.xml"; - file name and location of xsl file
    const string stylesheetsimple = @"C:\Users\fenwky\style1.xsl";
    //const string xmlfilecomplex = @"C:\Users\fenwky\XmlDoc2.xml";
    const string xmlfilecomplex = @"C:\Users\fenwky\XmlDoc2.xml";
    DataSet ds = null;
    public CSVImporter()
    InitializeComponent();
    // Create a Open File Dialog Object.
    openFileDialog1.Filter = "csv files (*.csv)|*.csv|All files (*.*)|*.*";
    openFileDialog1.ShowDialog();
    string fileName = openFileDialog1.FileName;
    //doc.InsertBefore(xDeclare, root);
    // Create a CSV Reader object.
    CSVReader reader = new CSVReader();
    ds = reader.ReadCSVFile(fileName, true);
    dataGridView1.DataSource = ds.Tables["Table1"];
    private void WXML_Click(object sender, EventArgs e)
    WriteXML();
    public void WriteXML()
    StringWriter stringWriter = new StringWriter();
    ds.WriteXml(new XmlTextWriter(stringWriter), XmlWriteMode.WriteSchema);
    string xmlStr = stringWriter.ToString();
    XmlDocument doc = new XmlDocument();
    doc.LoadXml(xmlStr);
    XmlDeclaration xDeclare = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
    XmlNode docNode = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
    doc.InsertBefore(xDeclare, doc.FirstChild);
    // Test code //
    // Load the style sheet.
    XslCompiledTransform xslt = new XslCompiledTransform();
    xslt.Load("style1.xsl");
    // Test code //
    // Transform the file and output an HTML string.
    string HTMLoutput;
    StringWriter writer = new StringWriter();
    xslt.Transform("XmlDoc.xml", null, writer);
    HTMLoutput = writer.ToString();
    writer.Close();
    // Create a procesing instruction.
    XmlProcessingInstruction newPI;
    // Stylesheet
    // String PItext = "<abc:stylesheet xmlns:abc=\"http://www.w3.org/1999/XSL/Transform\" version=\"1.0\">";
    String PItext = "<xsl:stylesheet xmlns:xls=\"http://www.w3.org/1999/XSL/Transform\" version=\"1.0\">";
    // newPI = doc.CreateProcessingInstruction("abc:stylesheet", PItext);
    newPI = doc.CreateProcessingInstruction("xls:stylesheet", PItext);
    doc.InsertAfter(newPI, doc.FirstChild);
    // Save document
    doc.Save(xmlfilename);
    private void btExportComplexXML_Click(object sender, EventArgs e)
    WriteXMLComplex();
    public void WriteXMLComplex()
    // Creates stringwriter
    StringWriter stringWriter = new StringWriter();
    ds.WriteXml(new XmlTextWriter(stringWriter), XmlWriteMode.WriteSchema);
    string xmlStr = stringWriter.ToString();
    XmlDocument doc = new XmlDocument();
    doc.LoadXml(xmlStr);
    XmlDeclaration xDeclare = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
    XmlNode docNode = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
    doc.InsertBefore(xDeclare, doc.FirstChild);
    // Create a procesing instruction.
    XmlProcessingInstruction newPI;
    // Uses XML transformation.
    String PItext = "<abc:stylesheet xmlns:abc=\"http://www.w3.org/1999/XSL/Transform\" version=\"1.0\">";
    newPI = doc.CreateProcessingInstruction("xsl:stylesheet", PItext);
    doc.InsertAfter(newPI, doc.FirstChild);
    // Saves document.
    doc.Save(xmlfilecomplex);
    //Creates a CSVReader Class
    public class CSVReader
    public DataSet ReadCSVFile(string fullPath, bool headerRow)
    string path = fullPath.Substring(0, fullPath.LastIndexOf("\\") + 1);
    string filename = fullPath.Substring(fullPath.LastIndexOf("\\") + 1);
    DataSet ds = new DataSet();
    try
    if (File.Exists(fullPath))
    string ConStr = string.Format("Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0}" + ";Extended Properties=\"Text;HDR={1};FMT=Delimited\\\"", path, headerRow ? "Yes" : "No");
    string SQL = string.Format("SELECT * FROM {0}", filename);
    OleDbDataAdapter adapter = new OleDbDataAdapter(SQL, ConStr);
    adapter.Fill(ds, "TextFile");
    ds.Tables[0].TableName = "Table1";
    foreach (DataColumn col in ds.Tables["Table1"].Columns)
    col.ColumnName = col.ColumnName.Replace(" ", "_");
    catch (Exception ex)
    MessageBox.Show(ex.Message);
    return ds;

  • Error during visual studio 2013 intallation on windows 8.1

    After installing windows sdk 8.1, I've decided to install visual studio 2013,when it reached 70% of the installation process it stopped and told me that I have vGraphic data error(data redundancy) what is that??? and how can I fix it,this is the logs file:
    vslogs

    I found numerous instances of "Error 0x80070017: Failed attempt to copy payload" in your install log.
    For the error code “-2147024873” which is 0x80070017, it means “Data error (cyclic redundancy check)”. I recommend you run the Chkdsk.exe tool to check
    the disk for errors:
    Click
    Start, and then click Run.
    Type
    cmd in the Open box, and then click OK.
    At the command prompt, type
    Chkdsk /f, and then press ENTER.
    Press Y when you are prompted to check the disk next time that the system restarts.
    Close all applications and restart the computer.
    Note: During the restart process, Windows checks the disk for errors and then starts.

  • Invalid Markup error in visual studio 2013

    Hi,
    I am using Visual Studio 2013 Ultimate on Windows 8.1 for WPF project. I added two .dll libraries as reference: dataGrid2d and GraphSharp, however my XAML design editor don't recognize any XAML markup from this libraries (Invalid Markup error). Project compiles
    and works fine and I can't figure out what is wrong with visual editor.
    Thank you in advance.

    Here are libraries http://1drv.ms/153lGSe
    I can normally use them in XAML and in c# code behind, everything is working fine in my app after compilation, I just can't see it in design editor. Errors are:
    Error    1    The name "DataGrid2D" does not exist in the namespace "clr-namespace:DataGrid2DLibrary;assembly=DataGrid2DLibrary".    C:\Users\Mikołaj\OneDrive\Projects\visual studio 2013\Projects\DeterministicFiniteAutomatonLibrary\GUI\TransitionFunctionWindow.xaml  
     12
    Error    2    The name "ZoomControl" does not exist in the namespace "clr-namespace:WPFExtensions.Controls;assembly=WPFextensions".    C:\Users\Mikołaj\OneDrive\Projects\visual studio 2013\Projects\DeterministicFiniteAutomatonLibrary\GUI\MainWindow.xaml  
     53
    Error    3    The name "GraphLayout" does not exist in the namespace "clr-namespace:GraphSharp.Controls;assembly=GraphSharp.Controls".    C:\Users\Mikołaj\OneDrive\Projects\visual studio 2013\Projects\DeterministicFiniteAutomatonLibrary\GUI\MainWindow.xaml  
     54

  • Database connection error in Visual Studio 2013

    I am using Visual Studio 2013 and have installed MS SQL Server 2014. I am trying to generate my database from a model (edmx) but I get the following error: Cannot
    connect to <Database>. An incompatible SQL Server version was detected (Microsoft.VisualStudio.Data.Tool.Sqleditor)
    In the edmx.sql file, is written:
    -- Entity Designer DDL Script for SQL Server 2005, 2008, 2012 and Azure
    I can see that 2014 version is missing from this generated file, and seems that the program tries to connect to the 2012 version .. how can I avoid this and manage visual studio tu use the 2014 version of MS SQL Server? Thanks in advance
    I already updated the SQL Server Data Tools to the newest version.

    Hello,
    Please read the following article:
    http://support.microsoft.com/kb/2858352/en-us
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Error Opening Visual Studio 2013 Please Help?

    Hi, I just installed the program "Microsoft Visual Studio Ultimate 2013", I installed it using the on screen instructions successfully, it asked
    me to restart the computer, I did and was very excited to use the software but when i opened it said that "An error occurred while starting for the first time. Please restart Microsoft Visual Studio." , I restarted the program and still the same
    error occurs, I restarted the computer still did not work, I re installed the software like 10 times (no extradition), I tried to press the repair button still did not work after repair, I installed the update patch and still did not fix, I restarted my internet
    and still did not work, i called Microsoft support team and no response (too expensive to call again) and still nothing worked.
    I know that there is other versions available for this software such as professional but I am willing to purchase this product after it installs correctly
    as this has all the features I really need... Please help 
    My computer specifications: 
    Operating system; Windows 7 SP1 x64 Bit 
    RAM: 4GB 
    HDD: 70GB (Allocated Partition) 
    Processor: Intel Core I5 3.40 GHz 
    I tired to be detailed as i can please i really need help urgently ASAP. 
    Thanks 
    Full Error Log can be found here; 
    (Image)
    http://s23.postimg.org/vdt7hcw1n/fulldebugerror.png
    Milan

    Hi,
    And from the log message you offered, you get the following error message:
    Unable to cast COM object of type 'System._ComObject' to interface type 'Microsoft.VisualStudio.Shell.Interop.IVsProfileDataManager'
    The
    IVsProfileDataManager provides access to the profile manager and to programmatic control of settings. The error message turns out that you get a broken registration for IVsProfileDataManager.
    Do you get any error message during the Visual Studio installation? You can use the
    collect.exe tool to collect VS installation logs and upload the vslogs.cab file in the %temp% folder to the SkyDrive, then post back the link. 
    Thanks.
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Deployment Error from Visual Studio 2013

    I have been publishing my Azure web role and worker roles once or twice per week for the last year. 3 days ago I began getting this when publishing from VS:
    8:44:19 AM - Checking for Remote Desktop certificate...
    8:44:21 AM - Applying Diagnostics extension.
    8:45:13 AM - The server encountered an internal error. Please retry the request.
    Always the same three lines.  I have tried 20x over the last 3 days.  The only posts I can find that sound related deal with intermittent network issues.  Since this has been going on for 3 days and I see no service issues listed on
    http://azure.microsoft.com/en-us/status/, I do not think my problem is related to a network issue.
    I am able to successfully package from VS, then publish via the Azure web portal.
    Does anyone know how I can troubleshoot problems publishing?  Thanks.

    Sowmya,
    I opened a support ticket but was told since it did not have to due with billing that they cannot help since I have not paid for technical support.  Is there any way I can troubleshoot the problem that I am having?  I generally solve things myself,
    but since I am not getting any indication of what the problem is, I do not know where to look. Again I can manually package the solution, upload to BLOB storage, and update my cloud services through the control panel.  So it is a fine workaround for now,
    but it takes much longer than simply publishing from VS2013 which is what I had always done in the past.  But now I get this "an internal error has occurred".  It is hard to believe someone coded the system to even give such a useless message.
    Any other options?
    Thanks,
    Denis

  • I can't install multi language pack - english for visual studio 2013 update 3

    Error : Microsoft portable library multi-targeting  language pack - enu element not fount
    Error : Microsoft visual studio 2013 performance collection tools - ENU package failed.
    I have downloaded visual studio 2013 in some other language. I wanted to change it to English so I downloaded multi language pack- English and installed. I came up with the above error. Please help me. Thanks in advance. 

    I don't know of a reason you posted your question in a Visual Basic forum. You should probably find a Visual Studio forum to post your question in.
    However I've never tried to do what you want to do. But maybe these links can assist you.
    Microsoft Language Interface Packs (LIPs) and Visual Studio
    "When you install different language versions of Visual Studio on the same computer, you can only switch languages between matching editions. For example, if you have an English Express Edition installed, a German Express Edition installed, and a Professional
    Edition installed, you can only switch languages for the Express Editions, not for the Professional Edition.
    Starting with Visual Studio 2012, the Professional, Premium, and Ultimate products use a unified language pack. To install more than one language version of these products, you must install a full language product first and then install one or more language
    packs." |||||||||| "NOTE: The Professional, Premium, and Ultimate products starting in Visual Studio 2012 don't support installing multiple language versions of the full language product on the same computer. After you install one
    full language product, you must add language versions by using language packs. You can still install multiple full language products of the Express editions on the same computer."
    Visual Studio 2013 - Microsoft Language Interface Packs (LIPs) and Visual Studio
    Frequently Asked Questions - Windows Language Interface Pack (LIP)
    La vida loca

  • Visual studio 2013 Installation professional

    Report features are not installed while installing visual studio 2013 professional .
    even-tho we selected all the features at the time of visual studio 2013 professional  installation.
    System is Up-to-date . 
    windows 7 Professional with 64-bit OS .
    Latest 4.5.1 framework has been installed  .
    Report viewer 2012 run time and report viewer 2011 has been installed successfully .
    Sql management Studio 2012 with all the features has been Enabled  with Business Intelligent Tool has been enabled.
    Please help us to sort out this problem .
    Thanks in advance .

    I get the following errors when trying to compile any type of project after an install visual studio 2013 professional with update 4 on a computer that has no access to the internet. No previous versions of visual studio have been on the machine.
    Warning MSB8003: Could not find windowssdkdir from the registry. Target framework version or platform toolset may be set to an invalid version number.
    Error LNK 1104: cannot open file kernel32.lib
    Any ideas?
    Did you see if any of the search results provided by Google typing the exact error message can help?
    Alessandro Del Sole
    Microsoft MVP - Visual Basic: development
    http://community.visual-basic.it/alessandro/

  • Visual Studio 2013 Ultimate Installation

    Hello
    Need help installing VS2013, once i click install it gives the following message:
    "setup detected an issue during the operation
    please click below for solution
    a problem caused the program to stop........"
    Please assist in a solution
    NB: Using ISO image from MSDN to install, on a Windows 7 PC with SP1

    Hi,
    It seems your install package is corrupted. As your pvdg42 says, do you check the SHA-1 for the downloaded ISO. If not, please use the tool in below link to check your ISO checksum.
    http://support.microsoft.com/kb/841290
    If the SHA-1 may not same to the Visual Studio 2013 Ultimate, you should try to download the ISO again or try to install by web downloader.
    If the errors also occurs,
    please use http://aka.ms/vscollect to gather the installation logs. You will find vslogs.cab from %temp% folder. Then upload the file to 
    https://onedrive.live.com/ and share the link here.
    Best Wishes!
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • Sharepoint 2010 Remote Development using Visual Studio 2013 Connection Errors

    I have a customer who is using a custom skinned site developed in Sharepoint 2010.
    I am trying to debug a webpart that is not loading on a page.
    My Environment:
    Local Laptop running Win 7 64 Enterprise, Visual Studio 2013, and Sharepoint Designer 2010.
    I connect to the customers network via VPN and use RDP to access the server. I have Admin rights to the server.
    Everything that I have read indicates that Web Part dev has to be done in VS. When I try to connect using server explorer, VS kicks back a 'Server Can not be found' error.
    I have tried using the computer name, the app url listed in SP Central Admin, the IP address of the box, and the actual URL of the site. However, VS can not connect to the server.
    I have done some homework on connecting VS to a remote machine:
    Adding New Servers in Server Explorer
    http://msdn.microsoft.com/en-us/library/edfcxas2%28v=vs.71%29.ASPX
    Add Server Dialog Box
    http://msdn.microsoft.com/en-us/library/107b72aa%28v=vs.71%29.ASPX
    SharePoint -how to connect remotely to production server
    http://stackoverflow.com/questions/3188364/sharepoint-how-to-connect-remotely-to-production-server
    SharePoint 2010 Development with Visual Studio
    http://stackoverflow.com/questions/10529917/sharepoint-2010-development-with-visual-studio
    Setting Up the Development Environment for SharePoint 2010 on Windows Vista, Windows 7, and Windows Server 2008
    http://msdn.microsoft.com/en-us/library/ee554869%28office.14%29.aspx
    Using SharePoint Designer 2010 to Work with Web Parts
    http://msdn.microsoft.com/en-us/library/ff630941%28v=office.14%29.aspx#odc_sp14_qn_UsingSharePointDesigner2010WorkwithWebParts_CreateXSLTListView
    The last connection article is confusing because one of the SO answers indicates that you do not need to have SP2010 installed.
    I have been doing lots of reading on SP structure, and it seems to jump all over the place. (Or at least my research does). I have been reading this Ebook:
    SharePoint 2010 Development with Visual Studio 2010
    http://books.google.com/books/about/SharePoint_2010_Development_with_Visual.html?id=TVKICs4vHTcC
    My questions are:
    Why cant I connect to the Server if I connected through VPN which would inherently make the server a local network computer?
    Do I need to have VS installed on the actual server? I read that I can install Sharepoint Foundation locally and this will give me access to the server in VS.
    Do I need to have the full version of VS installed in order to use Remote Tools?
    For the Web Parts:
    Why cant I see the web parts in Sharepoint Designer? I take it they are exclusively designed in VS, which brings me back to the questions above.
    In Sharepoint Designer, I can see a custom view that was created from a custom list. I want to add that list to the page where the web part isnt working. When I open up the Edit Interface, and try to find that list, it does not display in the 'Lists and Libraries'
    menu

    Hello,
    As per your description, remote deployment is not possible for server side code in sharepoint so if you are using server object model then you won't be able to debug or deploy your solution from visual studio.
    VS is not required to installed on UAT/prod server but you need sharepoint along with visual studio in same development machine to develop any custom webpart.
    Once you deploy your custom webpart on site then you will be able to see that webpart in webpart gallery and that gallery is also available in designer so it means you can also add your custom webpart from designer to any page.
    Correct me if i misunderstood you
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Publish cloud service fails from Visual Studio 2013 Update 4: Published Asset Entry for Image Microsoft.Azure.Diagnostics_PaaSDiagnostics_europeall_manifest.xml not found.

    I have a cloud service project with two roles (service and worker). In Visual Studio 2013 Update 4 when I choose "Publish..." from the "Solution Explorer",  it opens "Microsoft Azure Activity Log" and quickly terminates.
    Here the log:
    9:43:47 AM - Applying Diagnostics extension.
    9:44:09 AM - Published Asset Entry for Image Microsoft.Azure.Diagnostics_PaaSDiagnostics_europeall_manifest.xml not found.
    All works fine when uploading the package and updating from https://manage.windowsazure.com/. It only fails from within Visual Studio.
    What can I do to get it working?

    I have the same problem with our Azure project. Two web roles (service and worker). Just updated from SDK2.2 to SDK2.5 and Visual Studio 2013 Update 2 to Update 4. The main reason behind this was to move from log4net to WAD and in doing so, of course directly
    move to the new diagnostics version.
    Now, I get the same error message in Visual Studio:
    11:45:24 - Checking for Remote Desktop certificate...
    11:45:25 - Applying Diagnostics extension.
    11:45:45 - Published Asset Entry for Image Microsoft.Azure.Diagnostics_PaaSDiagnostics_europeall_manifest.xml not found.
    With my small testing project - also two roles (service and worker) - everything is fine. However, I'm looking for a solution to make by existing production service working.
    Also the test project shows no Microsoft.Azure.Diagnostics_PaaSDiagnostics_europeall_manifest.xml,
    but this is no problem - so what's the meaning of or solution to this error messages?
    What I found so far:
    I deployed the Azure project from the same development environment to another Azure test service: Deployment
    showed no errors and the service is running fine! So the problem is not with the source, the development environment, library dependencies etc.
    Trying Azure cmdlets for PowerShell also work fine for the new service and fails for the production service with almost the same error message:
    Following http://blogs.msdn.com/b/kwill/archive/2014/12/02/windows-azure-diagnostics-upgrading-from-azure-sdk-2-4-to-azure-sdk-2-5.aspx
    I tried:
    PS C:\> Set-AzureServiceDiagnosticsExtension -StorageContext $storageContext -DiagnosticsConfigurationPath $public_config -ServiceName $service_name -Slot 'Staging' -Role $role_name
    VERBOSE: Setting PaaSDiagnostics configuration for MyWebRole.
    Set-AzureServiceDiagnosticsExtension : BadRequest : Published Asset Entry for Image
    Microsoft.Azure.Diagnostics_PaaSDiagnostics_europeall_manifest.xml not found.
    At line:1 char:1
    + Set-AzureServiceDiagnosticsExtension -StorageContext $storageContext -Diagnostic ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Set-AzureServiceDiagnosticsExtension], CloudException
        + FullyQualifiedErrorId : Microsoft.WindowsAzure.CloudException,Microsoft.WindowsAzure.Commands.ServiceManagement.
       Extensions.SetAzureServiceDiagnosticsExtensionCommand
    The problem seems to be related to those service configuration parts in the cloud which are not replaced
    by a new deployment... So what are possible reasons or fixes for this behaviour?
    Best regards,
     Andreas

  • Not able to properly install "Tools for Apache Cordova for Visual Studio 2013"

    Hi,
    I am using visual studio 2013 ultimate running on a 64-bit windows 7 home premium.
    When I tried to install the "Tools for Apache Cordova for Visual Studio 2013", the installation completed but showed the following error in the end. This is what the error says:
    "  Joyent Node.js
        Invalid command line argument. Consult the Windows Installer SDK for detailed command line help.  "
    I thought maybe windows phone SDK 8 is not installed on my pc.( as mentioned in the requirements here: https://msdn.microsoft.com/en-in/library/dn757054.aspx). I tried to install the SDK, by choosing modify from the control panel (as
    mentioned in the same link above), but it didn't show "Windows Phone SDK" on the list. And Microsoft says that you cannot install the SDK v8.0 on windows 7. Please help me with this.

    OK...
    1)  So, how do I write JavaScript code? There is only one option when I select JavaScript form the "New Project" window and that says "Blank App (Apache Cordova)". when I try to create one it shows all these errors:
    " We've detected issues with your system's environment configuration
       Apple iTunes - software is missing from your computer.
       WebSocket4Net - software is missing from you computer. You may also have to configure it after installation."
    2)  I don't have iTunes on my computer. So, Is there a way to do it without installing iTunes?
    3)  And I've already installed the "WebSocket4Net", using both the "vs2013_mda0.3" setup and manually. But nothing worked. So what to do about it.?

  • Visual Studio 2013 Express for Windows - InitializeComponent() does not contain a definition issue

    Hi,
    I have recently downloaded Visual Studio 2013 Express for Windows (Windows Store App version), with Update 1.
    I create a blank app. I right-click on InitializeComponent() in the MainPage.xaml.cs and select Go To Definition. It brings me to the .g.i.cs file where this method resides.
    I go into the designer for MainPage.xaml and create a grid of 2 rows and 2 columns (all at 1*). I add one button, doesn't matter where. I double click on that button to add a click method to MainPage.xaml.cs. Without entering anything into the button click
    method, I scroll up and InitializeComponent() has an error and tells me there is not definition, even though I was looking at the definition a minute ago. I found I could unload the project and reload it and InitializeComponent() would have the definition
    in the .g.i.cs file but as soon as I add another button click or anything else I run into the same error. It seems as if the .g.i.cs file is not automatically regenerating, or it is being deleted all together when the button click method is added to the xaml.cs
    file.
    Everything I have done up to this point is very vanilla. I installed VS '13 Express for Windows, didn't change any VS setting, created a project and ran into this issue. I installed Update 1 thinking there might be a fix from the update--no luck. The xaml
    file Build Action is Page and the Xaml.cs file is Compile.
    I have tried deleting the MainPage.xaml file, after the creation of a project, and adding a new MainPage file with the added templates VS wants to include, and I still run into the same issue.
    I have searched for answers the past few days but haven't found anything that addresses my issue (most of what I found addresses VS '10 but their InitializeComponent() issues aren't the same as mine). Any help the MSDN community can provide would be
    a great help. If worst comes to worst, I will re-install VS and see if that corrects it--this would be a last-ditch effort though.
    Thank you for any help you may be able to provide

    Intellisense has a bug in VS2013 where it doesn't recognize InitializeComponent when you start working on the XAML.  My feeling is that if you try to compile this app, it will run fine (as long as there are no actual errors).
    Matt Small - Microsoft Escalation Engineer - Forum Moderator
    If my reply answers your question, please mark this post as answered.
    NOTE: If I ask for code, please provide something that I can drop directly into a project and run (including XAML), or an actual application project. I'm trying to help a lot of people, so I don't have time to figure out weird snippets with undefined
    objects and unknown namespaces.

Maybe you are looking for