Menu
  • HOME
  • TAGS

Understanding Certificate Management in Application Publish, .NET Windows Application Clickonce

c#,.net,certificate,clickonce,publishing

Since .net 3.5 signing a Clickonce application is optional. Just uncheck the options to sign your manifest files. If you do require a certificate and are creating your own, you can modify the expiration date on the certificate. Set it to expire some point in the distant future and you...

google play display “whats new” after the description?

android,google-play,publishing

If you have the app downloaded, Google displays the What's New first. If you don't, then it displays the Description first. This is so what's most important can be shown first. A new user cares more about the description, a user who already has the app cares about what's new....

Broken Adobe Air Installers, Do I Need a Certificate

flash,air,certificate,publishing,signing

About certificate, you can use a self signed certificate, the only difference is that the users will see a big warning when installing that the publisher is unknown. About timestamping, I only know that the adt tool that packages the app is attempting to connect to a timestamping server, I...

Can Android devices with old firmware download old app versions in play store?

android,google-play,compatibility,publishing

The normal flow is to have just one APK active at a time. But you can enable multiple APKs to be active by following this rules. You have to check the changes to your manifest between the two versions and see if they apply to those rules. It worth reading...

Visual Basic 2010, finishing your project by getting the exe file from bin, or publishing

vb.net,visual-studio-2010,project,publishing

Set your Solution Configurations to Release, build a solution (Ctrl+Shift+B) then navigate to your bin/Release folder and there you will find your exe file ready to be shipped. You can ship that exe as is, or you can wrapp it up in an installer application. If your application has some...

Publishing Outlook/Excel add to the office store

ms-office,outlook-addin,publishing,excel-addins,office-addins

The Office store is for Apps only (HTML/CSS + JS). You can publish your add-in in the Windows Store instead. Note, you will need to handle the purchase process on your web site. Also any installers would be available on your site as well. Windows Store just provides a link...

How can I publish ongoing content without having to code it manually?

wordpress,post,content-management-system,customization,publishing

If I am understanding you correctly and you are talking about a way to style your content without having to code the html and css manually. There are a lot of options for this. Wordpress has quite a few plugins and frameworks that come equipped with the JS and CSS...

How to stop visual studio generate typescript js and js.map files while publishing

visual-studio-2013,configuration,typescript,publishing

However while publishing my project, it still generates js and js.map file foreach .ts files. You probably have different config for debug and release. Make them the same....

Google Play: Declaring an App is Only for TVs

google-play,publishing,android-tv,nexus-player

Yes, you have to upload screenshots for Android TV and one other device, even if it's only for Android TV. To limit device compatibility, make sure you have the following in your manifest: <uses-feature android:name="android.software.leanback" android:required="true" /> This will limit it to Android TV devices, and then you can manually...

ios, publish different build per device

ios,app-store,publishing

This can't be done. If your app supports the iPhone then it must support both 4" and 3.5" inch iPhones. If it supports only iOS 7 then you can avoid non-retina devices because only retina devices can run iOS 7. But if you support the iPad you must support both...

When publishing, what is exactly supposed to be published?

asp.net-mvc,visual-studio-2012,publish,publishing

Publish is supposed to do almost what you mentioned only.. Images in content folder any stylesheets in the content folder Scripts in script folder All View files Anything with Build Action = Content The compiled files form the dll of your binary & dependencies Infact all the images, css, javascripts...

why is Android app publishing taking several days [on hold]

android,google-play,publishing

here is detail provided by the google and for more details http://www.appmakr.com/blog/how-long-app-approved/ https://somethingididnotknow.wordpress.com/2014/03/11/how-long-does-it-take-for-the-google-play-store-to-publish-my-app-in-beta/ Android application approval process in playstore ...

Why does Visual Studio omit “.compiled” files from my published ASP.net project?

asp.net,visual-studio-2012,publishing,precompile

You'll want to make sure that 'Allow precompiled site to be updateable' is unchecked. This is will compile the front-end aspx, ascx, etc. codepages into the /bin folder as *.copiled. ...

how to extend the Visual Studio web publish pipeline?

xml,visual-studio-2013,gruntjs,publishing,webdeploy

I just did my own research and I found a way to do it. you need to create a wpp.targets file in your root, the name should be [projectName].wpp.targets for example. then in the file you'll need to setup msdeploy with the following instructions: <?xml version="1.0" encoding="utf-8" ?> <Project ToolsVersion="4.0"...

How to publish a Grails plugin locally and to a remote repo

maven,grails,publishing,artifactory

While the plugin is under development, make it a local plugin, so that you don't have to redeploy to a repo after every change. For example, for a plugin named 'shiro' whose source code is at /dev/plugins/grails-shiro, add the following to Config.groovy grails.plugin.location.shiro = "/dev/plugins/grails-shiro" When a version of the...

Do I really need to publish the project in Visual Basic 2010 Express?

.net,vb.net,visual-studio-2010,publishing

Just running the application won't prompt the user to install the correct .NET Framework. If you want that, you need to create a setup for your application. Either using ClickOnce, Visual Studio Setup Project or Wix. Of those three Wix is the most future proof solution. Without any .NET Framework...

Visual studio not removing app_offline.htm after publish

c#,asp.net,visual-studio-2012,publishing

Do you have the same Visual Studio service packs, patches, etc. installed on your new machine that you did on the old? Try installing the latest Windows and Visual Studio updates and see if that helps.

Sitecore Publishing

asp.net,sitecore,publishing

Both you do the same thing, the difference is only as the name says, Republish Site will republish all items while republish item will only republish the selected item. The difference between smart, incremental and republish you can see here: http://www.sitecoreinsight.com/sitecore-publish-site-tool-publishing-modes/ And about the cache, yes, it always clear the...