package

msbuild target package not found

I want to package my VS2010 web application project ready for deployment with msdeploy. On development machine I can do this using: MSBuild.exe "C:\path\to\WebApp.csproj" /target:package But on my build server I get this error: error MSB4057: The target "package" does not exist in the project. What am I missing on the build server? ...

Java Package - To create a button and import one when needed.

This is more like a package/import test. We'll start with my base folder at .../javaf/test.java My goal is to create subcategory and create a class with a button that I can import to test.java when I need a button. I feel like I've done it right, I know that the button doesn't do anything as of now, but I just want to make the whole thi...

Create a Stream without having a physical file to create from.

I'm needing to create a zip file containing documents that exist on the server. I am using the .Net Package class to do so, and to create a new Package (which is the zip file) I have to have either a path to a physical file or a stream. I am trying to not create an actual file that would be the zip file, instead just create a stream that...

Accessing Python module fails although its package is imported

Hey Stackers! :) My Django project's directory hierarchy looks like this: + pybsd |---+ devices |---+ templates |---+ views |---+ interaction |---- __init__.py |---- geraete.py |---- geraetemodelle.py |---- geraetegruppen.py |---- __init__.py |---- ajax.py ...

What's the purpose of "import package"?

As I just found out import package does not make the package's modules available through package.module. The same obviously holds true for from package import subpackage as well as from package import * What's the purpose of importing a package at all then if I can't access its submodules but only the objects defined in __init__.py? It...

How do I install python gtkmozembed package or is there a replacement of python GtkMozEmbed in windows?

self.widget = gtkmozembed.MozEmbed() self.widget.set_size_request(x + 18, y) I can't find a binary installer of gtkmozembed, is there an equivalent that can do the above ? ...

How to add a App by PackageMaker In MAC?

I used packagemaker to package a App, now I want to add another app with a option, if user check the option , it can be installed automatically, because another app will be packaged with packagemaker, so I didn't include it with a folder with packagemaker, how to do it ? Thank you !!! ...

imports and package structure in as3/flex

I've got a problem how to organise files and packages in AS3/Flex project. A short intro to the problem: The files structure in the project is (and should stay) like this: libs/Class1/src/<files> libs/Class2/src/<files> libs/Class3/src/<files> The amxmlc compiler source-path variable points to: libs/ I need it because I have to ...

Executing a DTS package from Sql Server 2005

I am trying to run several DTS packages from a sql 2000 box. The DTS calls will originate from .net 2.0 - 3.5 code. I have been unable to find a good way to programmatically accomplish this. What I have read is running a sql job from a stored procedure that calls the DTS package. Does anyone has any experience with this or know of a good...

My Oracle 9i package won't compile, says that a user-defined function is out of scope... but it isn't...

I have an Oracle package which contains user-defined functions and procedures, including two user-defined functions which are called from SELECT and UPDATE statements. The functions in question are defined before the procedures that call them. This piece of code compiles and works fine on Oracle 10g but won't compile on 9i. The code s...

eclipse 3.4 (ganymede) package collision with type

We have a package that ends with exception e.g. package a.b.c.exception; Our code base had no issues up till eclipse 3.3, however when we shifted to eclipse 3.4, it started giving errors related to this package: "The package a.b.c.exception collides with a type" When I refactor the package name to a.b.c.exceptions, there are no is...

Use same project to create multiple applications on same device

For Android 2.1, I am deploying a reader application with it's document packaged in the asset folder. Any branding is done by dynamically generating XML and resources as appropriate. The application name itself is also generated. Since it is the <manifest> tag's "package" property that needs to be unique, I nevertheless have a problem ...

Create cross platform Java SWT Application

I have written a Java GUI using SWT. I package the application using an ANT script (fragment below). <jar destfile="./build/jars/swtgui.jar" filesetmanifest="mergewithoutmain"> <manifest> <attribute name="Main-Class" value="org.swtgui.MainGui" /> <attribute name="Class-Path" value="." /> </manifest> <fileset dir="./build/c...

Change root package of Java JAR

I am writing a Java Agent which makes use of the Java ASM library for handling byte code. This is a common library and I want to be sure about the version of ASM which my code is using at runtime. What is the easiest and most automated way to take the ASM classes and process them into a private copy where all the classes have been reloc...

MSBuild Starter Kits...

Hi guys Just wondering if anyone knows if there are any MSBuild starter kits out there. What I mean by starter kits is that from the looks of it most builds to kinda the same sort of steps with minor changes here and there (i.e. most builds would run test, coverage, zip up the results, produce a report, deploy etc). Also what most pe...

How do I solve an unresolved external when using C++ Builder packages?

I'm experimenting with reconfiguring my application to make heaving use of packages. Both I and another developer running a similar experiment are running into a bit of trouble when linking using several different packages. We're probably both doing something wrong, but goodness knows what :) The situation is this: The first package...

python script problem once build and package it

hi expert, I've written python script to scan wifi and send data to the server, I set interval value, so it keep on scanning and send the data, it read from config.txt file where i set the interval value to scan, I also add yes/no in my config file, so is 'no' it will scan only once and if 'yes' it will scan according to the interval lev...

solr-tomcat package on ubuntu lucid

Hi I've installed solr-tomcat package on ubuntu lucid (10.04 latest). It automatically install java and tomcat and hopefully all other dependencies. I can access tomcat at http://localhost:8080 but not sure where to find the solr web admin http://localhost:8180 gives me nothing. Is this package known to work? I've read that on previous...

Java newbie problem: package with private access

Pack.java imports pack.TestPack; but it cannot access it. I cannot understand why it cannot access the class despite the import. Error Pack.java:7: TestPack() is not public in pack.TestPack; cannot be accessed from outside package System.out.println(new TestPack().getHello()); ^ 1 error Pack.java ...

Java newbie problem: classes of the same package accessing one another?

The classes belong to the same pkg. They are in the dir, name of the pkg. In general, how can classes access one another in the same pkg? Error javac PackTest.java PackTest.java:8: cannot find symbol symbol : class PriTest location: class pacc.PackTest System.out.println(new PriTest().getSaluto()); ^ 1 er...