Questions tagged [publish]

To publish is the process to make something publicly available. This might be the stuff that happens inside a CRM system after editing an article and finally publishing it, or publishing a project artifact.

In most cases publishing is not just the fact of making something publicly available, but also involves steps like testing/proof reading it, tagging it in some kind of version control. Also often various artifacts should get published at the same point in time.

3310 questions
1
vote
2 answers

Sitecore workflow publish action parameters

We have workflows enabled for majority of our content in Sitecore. We are using the auto-publish feature available after an item gets into the Final state of the workflow. Our implementation partner has enabled 3 parameters for this publish action -…
Gabbar
  • 4,006
  • 7
  • 41
  • 78
1
vote
2 answers

Wpf publish can't find content: "could not find part of the path "

I created a Wpf application, it's composed of 3 projects, in a project that is not my main project I'm accessing some config.xml file read data from and also write data to. In my app I access this file simply as : string xmlStr =…
Ravid Goldenberg
  • 2,119
  • 4
  • 39
  • 59
1
vote
1 answer

Meteor Framework Subscribe/Publish according to document variables

I have a game built on Meteor framework. One game document is something like this: { ... participants : [ { "name":"a", "character":"fighter", "weapon" : "sword" }, { "name":"b", "character":"wizard", "weapon" :…
Giray
  • 105
  • 1
  • 9
1
vote
1 answer

Publishing a console app disables command-line args?

I haven't built many console apps, but I noticed that command-line args are ignored when the .exe was created with Visual Studio 2013's publish feature. The .exe in the project /bin/debug folder acknowledges command-line args. I created this test…
1
vote
1 answer

updating my android application with android studio

I had built an android application in eclipse. I have stored the keystore and key alias after publishing it. Now I have imported it in Android Studio, updated the source code. And I want to publish the update on play store, but unfortunately it is…
Developer110
  • 182
  • 7
1
vote
1 answer

Error publishing on appstore - Storyboard file 'MainStoryboard_iPad~ipad.storyboardc' was not found

I have the error: "ERROR ITMS-90029: "Storyboard file 'Main_iPad~ipad.storyboardc' was not found. Please ensure the specified file is included in the bundle with any required device modifiers appended to the filename.", When I try to submit to the…
1
vote
2 answers

mimicking a subsection when publishing

I might be wrong, but as far as I understand Matlab does not have a "subsection" option when publishing. However, if I go for instance here (-mkdir- documentation), under the Examples section there are three "subsections". How would you obtain this?…
Stefano Lombardi
  • 1,581
  • 2
  • 22
  • 48
1
vote
1 answer

How to redirect a user when the published cursor gets emptied?

I'm publishing a cursor that outputs just one document inside of it: Meteor.publish ( 'test', function () { return MyCollection.find ( 'DocumentMongoDBID' ); } And I'm subscribing to it from the router (using iron router): Router.route (…
Fabio Spampinato
  • 717
  • 8
  • 18
1
vote
1 answer

How to install or publish submodules of gradle project as a jar

I want to install submodules of my project as jar to maven local repository. I searched a gradle script for publish. I found. But it install only one jar and it has not classes of submodules. How can I proceed? my-project …
Burak Dağlı
  • 512
  • 2
  • 10
  • 33
1
vote
1 answer

How to enable the 'Updates' button in the Publish tab in Visual Studio 2013?

Regarding publishing a WPF application in Visual Studio 2013: I'm trying to enable the 'Updates' button in the Publish tab. The reason I'm trying to do this is in order to manually set some of the properties (which after googling etc. I feel I need…
Yossarian
  • 11
  • 1
1
vote
1 answer

What is the best way to publish RSS Feed on Facebook?

What is the best way to publish an rss feed or a sitemap to facebook? I am using google app engine as the platform and the python language
demos
  • 2,630
  • 11
  • 35
  • 51
1
vote
1 answer

Why my app doesn't appear in chromecast.com/apps?

I have developed an Android app with chromecast compatibility, i have finished all the setup on Google Cast SDK Developer Console, my app runs well on my devices and also in other android devices an other chromecast devices, is published correctly,…
Juanjo
  • 298
  • 1
  • 15
1
vote
1 answer

msbuild deployonbuild trying to publish different project

I have an MVC site that I am publishing through the command line using the arguments msbuild.exe /p:DeployOnBuild=true /p:PublishProfile=Test MyProject.csproj The MyProjectproject has a reference to another web application project…
DLeh
  • 23,806
  • 16
  • 84
  • 128
1
vote
1 answer

SignFile task failed - Contains a virus or unwanted software?

I've been working on an update to an application which generates the interface on the go in some areas to make adding additional features more streamline and have gone to publish it.. but am now getting thrown an error The SignFile task failed…
Andy
  • 823
  • 5
  • 17
  • 37
1
vote
1 answer

How to Publish/Export wxWidgets Application

newbie here. Want to ask for any advice on how to Publish/Export, CodeBlocks Application made by using wxWidgets. After some research, i discovered that i should use DLL, or something like that, but since I am really new into it, I am missing the…