<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Custom Visual - pbiviz package error in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Visual-pbiviz-package-error/m-p/724982#M19798</link>
    <description>&lt;P&gt;I'm trying to create a custom visual, however while executing pbiviz package&amp;nbsp; I've obtained those errors (see image) and then, the visual is not created..&lt;BR /&gt;Any idea in how to solve this problem?&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Capturar.PNG" style="width: 914px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/173393iBF44E8BFD4D25BE5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capturar.PNG" alt="Capturar.PNG" /&gt;&lt;/span&gt;Thanks very much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Jun 2019 13:02:21 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-06-26T13:02:21Z</dc:date>
    <item>
      <title>Custom Visual - pbiviz package error</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Visual-pbiviz-package-error/m-p/724982#M19798</link>
      <description>&lt;P&gt;I'm trying to create a custom visual, however while executing pbiviz package&amp;nbsp; I've obtained those errors (see image) and then, the visual is not created..&lt;BR /&gt;Any idea in how to solve this problem?&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-center" image-alt="Capturar.PNG" style="width: 914px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/173393iBF44E8BFD4D25BE5/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capturar.PNG" alt="Capturar.PNG" /&gt;&lt;/span&gt;Thanks very much!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 13:02:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Visual-pbiviz-package-error/m-p/724982#M19798</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-06-26T13:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Visual - pbiviz package error</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Visual-pbiviz-package-error/m-p/725439#M19802</link>
      <description>&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;A packaged visual expects a bit more info. You need to edit your &lt;FONT face="courier new,courier"&gt;pbiviz.json&lt;/FONT&gt; and fill in the fields specified before the package process will work.&lt;/P&gt;&lt;P&gt;So, let's say your file looks like this (which is pretty much the default after creating):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
    "visual": {
        "name": "myVisual",
        "displayName": "myVisual",
        "guid": "myVisualD7CD469BA41A483C8C1576E59A1D23E3",
        "visualClassName": "Visual",
        "version": "1.0.0",
        "description": "",
        "supportUrl": "",
        "gitHubUrl": ""
    },
    "apiVersion": "2.6.0",
    "author": {
        "name": "",
        "email": ""
    },
    "assets": {
        "icon": "assets/icon.png"
    },
    "externalJS": null,
    "style": "style/visual.less",
    "capabilities": "capabilities.json",
    "dependencies": null,
    "stringResources": []
}&lt;/PRE&gt;&lt;P&gt;You need to add values to the &lt;FONT face="courier new,courier"&gt;author&lt;/FONT&gt; (&lt;FONT face="courier new,courier"&gt;name&lt;/FONT&gt; and &lt;FONT face="courier new,courier"&gt;email&lt;/FONT&gt;), &lt;FONT face="courier new,courier"&gt;description&lt;/FONT&gt; and &lt;FONT face="courier new,courier"&gt;supportUrl&lt;/FONT&gt; fields, e.g.:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;{
    "visual": {
        "name": "myVisual",
        "displayName": "myVisual",
        "guid": "myVisualD7CD469BA41A483C8C1576E59A1D23E3",
        "visualClassName": "Visual",
        "version": "1.0.0",
        "description": "My cool visual",
        "supportUrl": "https://www.google.com",
        "gitHubUrl": ""
    },
    "apiVersion": "2.6.0",
    "author": {
        "name": "My Name",
        "email": "my.email@email.com"
    },
    "assets": {
        "icon": "assets/icon.png"
    },
    "externalJS": null,
    "style": "style/visual.less",
    "capabilities": "capabilities.json",
    "dependencies": null,
    "stringResources": []
}&lt;/PRE&gt;&lt;P&gt;Obviosuly, you'd be better putting informative values in there, particularly if you want to distribute your visual to other users but this will get you moving.&lt;/P&gt;&lt;P&gt;Good luck!&lt;/P&gt;&lt;P&gt;Daniel&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 21:14:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Visual-pbiviz-package-error/m-p/725439#M19802</guid>
      <dc:creator>dm-p</dc:creator>
      <dc:date>2019-06-26T21:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: Custom Visual - pbiviz package error</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Custom-Visual-pbiviz-package-error/m-p/727489#M19826</link>
      <description>&lt;P&gt;Thanks very much, now it is working!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 17:59:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Custom-Visual-pbiviz-package-error/m-p/727489#M19826</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-06-28T17:59:38Z</dc:date>
    </item>
  </channel>
</rss>

