Upload new package version to the nuget.org - upload

I 've tried to upload a new verion of my package. I have not seen any special instructions for new version uploading, so i have tried to repeat the usual steps with the nuget.exe:
1) create .nuspec file
2) correct generated .nuspec file. Package id was not changed so it is simmilar to the already existing package name. Also i've correct dll name, version (1.0.0->1.1.1) and description
3) create .Nupkg file.
But when i am trying to upload new package, it ends up with an error:
'The title of your package, 'Gin', is similar to the ID of an existing package, which can cause confusion with our users. Please modify the title of your package and try uploading again.'
Yes of coruse, previous Gin-package is already in the nuget. So what am i missing?
How can i upload a new version of my package?

The problem occurs if your title and/or assembly name of new version package differs from the origin title and/or assembly name.

Related

How I can rename swift package

Is there some easy way to rename Swift Package?
I tried some standard ways but there wasn't result in finding quickly solution
Please help me, thanks in advance
Sorry guys i put it badly.
more description:
I have created SP in the my workspace a some time ago and now there are a lot links (imports of this package) around all project and now I want to rename this package. Special tool not avalible for this and i was looking some ather way to avoing a lot of routine work
Go into your Package.swift file and change any instance of your old name to your new name. Hit save, then your xcode project should update itself.
Sadly it doesn't look like there's a good way to do this, and when it's come up I've ended up making a new package with the correct name, moving all the code into it, and updating references to the old package to point to the new one.
Unfortunately I only found a manual way to do it.
These are the steps that I did to change OldName to NewName:
To change the package name that shown on Xcode, you can rename the root folder on your Finder
If your project are currently open, A popup will appear, you can just close the xcode.
Then you can re-open your package.swift file again.
Last, Rename the folder inside your Sources and Tests folder to the
new name. Also adjust your file name too.
I just renamed my package, which was easier than expected. As previously described, you have to do it manually.
Open your package in Xcode (not in a project)
Open the package.swift file and change the name everywhere
In your Sources folder is another folder with your package's name, rename that, too
If you don't use Git, that's pretty much it. If you do, you can commit your files (which will be a lot, because you renamed a parent folder) and change your repository's name. You probably have to clone it again, so there won't be any errors in the future.
After everything is renamed, you need to update your project(s). If you added your package locally, just search for all the import statements and change the name to your package's new name. If you added it via Github, remove the package dependency, add it again and then search for all the import statements and update them accordingly.

build failed due to "Cannot open include file: 'WinHttpClient.h': No such file or directory"

I'm trying to build new product version using plastic.
I have added 4 header files to our working project compiled it locally and it works fine.
When I try to build a new solution to our product build is failing due to:
"HandleMessage.cpp(4): fatal error C1083: Cannot open include file: 'WinHttpClient.h': No such file or directory".
Do i need to add this files manually somewhere in plastic or something?!
I'm despaired there is no one at our company that knows the proper way to do it.
Any help will be appreciated.
For those who encounters this problem, the solution is simple.
You probably forgot to add the files to the source control.
You go to Items->Open Your project, look at the files to see if they marked as checked. If not marked as checked, select those items and then right click->add to source control. After that build a new version and pray to god! :)

Localization in Blackberry Resource interface not generating

I am trying to implement localization in Blackberry for multiple language support.
For this I followed the tutorial from the following link
http://supportforums.blackberry.com/t5/Java-Development/Localizing-an-application/ta-p/442726
but i got the issue as described in this link
BlackBerry: Localization, Resource Bundle
But for me the file is still not generating even when I had created my .rrh file , i am following the same steps but still no success .
can anyone tell what I m missing ??
Regards
Be sure to have cleaned your project and checked "build automaticaly".
Then check your bin folder to the specified package in the option of the resource editor for the generated interface

where to find "package com.rim.samples.docs.notifications;"

i a developing blackberry aplication using eclipse can any one tell where to find the following library
package com.rim.samples.docs.notifications;
i have downloaded it from blackberry site but i dont know how to use it
com.rim.samples.docs namespace is common for samples BlackBerry Application Developer Guide.
On the other hand, "package" token defines the packege namespace, not the import.
If you have downloaded code and post it to namespace with other name, you may have trouble to compile it. Resolve it in two ways:
1. if your code file is placed directly in project src folder, simply remove
package com.rim.samples.docs.notifications;
from code, this will set namespace to default.
2. in project src folder create folder "com\rim\samples\docs\notifications" and move file to folder "notifications".

Adding "System.Data.SQLite" as a reference

when I was building my project done in ASP.NET and C#, it produced the following error:
The type or namespace name 'SQLite' does not exist in the namespace 'System.Data' (are you missing an assembly reference?"
So, when I tried to add it as a reference, I was not able to find "System.Data.SQLite" in my library.
How do I overcome this problem?
You get it (as a dll), then add a reference to it.
download here
for example install to C:\Program Files\SQLite.NET and browse to:
C:\Program Files\SQLite.NET\bin
I found that the best way to do this is to enter the following into the Package Manager Console:
Install-Package System.Data.SqLite
Try to search for System.Data.SQLite.DLL file (using windows explorer search) or if you have not yet installed it just download it from the net.
For more information try to read this.
For those folks that downloaded SQLite but can't get the DLL to show up in VS2010:
I've downloaded the latest SQLite build for my environment, but I still couldn't get the DLL to show up under References> Add Reference> .Net tab.
To fix this, I went into the Add Reference Window and selected the Browse Tab and just browsed to the DLL file in the install directory\bin folder. Now it shows up fine.
You need to download System.Data.SQLite, then you can add it to your project.

Resources