|
I'm new to Rake and using it to build .net projects. What I'm interested in is having a Summary task that prints out a summary of what has been done. I want this task to always be called, no matter what tasks rake was invoked with.
Is there an easy way...
Started by rathkopf on
, 5 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
task :compile => :realcompile do summary stuff end....
task :test1 do puts 'test1' end task :test2 do puts 'test2 tasks" Summary ones that call real tasks.
And manually update the task list, but it works.
|
|
I am using a pre-build task in Visual Studio 2008 that invokes msbuild:
C:\WINDOWS\Microsoft.NET\Framework\v3.5\MSBuild.exe $(MSBuildProjectDirectory)\version.targets /p:Configuration=$(ConfigurationName)
Inside version.targets, I am updating the AssemblyInfo...
Started by Richard Morgan on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
EDIT: I tried the suggestion....
Writing my own program to manually update the AssemblyInfo does nothing; again it fixed by MS.
Here are some of my desperate attempts at fixing this:
Moving the MSBuild task to inside the FileUpdate does nothing.
|
|
I am finding error status entries in the Status Update History table and task are not completing. One example is a user reassigns a team task to themselves and submits this for approval. In the Status update table the task appears with a Status of ERROR...
Answer Snippets (Read the full thread at microsoft):
There is....
In the resource plan and project schedule? Has someone else already picked up that team task? Has the project owner changed at any time?
My quick solution is to delete the task and recreate it making sure of times successfully.
|
Ask your Facebook Friends
|
I have a C# Application that does some maintenance tasks. It needs to run roughly every hour, although it's not too important if it's a bit off. And it has to run on a Win2003 Server with no one logged in.
Basically I wonder if I should write a Windows...
Started by Michael Stum on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Windows Task Scheduler is for end-user tasks not for appplication tasks....
Username it becomes a maintenance issue if you ever change your password and forget to update the task with Windows Tasks (not executing, ...).
|
|
Hello!
I'm trying to update the project task finish dates that are past the current date. Right now those are read only and i cannot change those dates. We need to reopen those task to book time for the assigned resources.
Please see the attached screen...
Started by Riya on
, 11 posts
by 8 people.
Answer Snippets (Read the full thread at ca):
That are already past?
Hello!
I'm trying to update the project task finish dates that are past the current date Assignment and edit the Resource Assignment Finish Date? If so, does it keep and update the TaskGood morning,
It looks....
|
|
My program consists of a large graphing UI control that I need to spend about 15 seconds re-loading every once in a while. Because the updating code works primarily with the UI control (maybe 90% of it actually sets properties on the control), it would...
Started by Ben on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
updating the graph) in many steps, you can perform each step.
The basic pattern is:
Invoke your primary task, passing break your primary task (ie.
The ability to update progress information.
|
|
I set a new scheduled task to start "when my computer starts". I assigned an Administrator user to run the task. This is an executable that is supposed to run indefinitely in the background.
The problem is, that if the Administrator logs in and then logs...
Started by Ovesh on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at superuser):
This will cause the task to run under a system account which does not interact with the desktop, and does has essentially complete system access....
The task from one of the Service user accounts (LocalService, NetworkService or LocalSystem).
|
|
I need to execute some ant commands depending on an environment variable passed in as a parameter to the maven build command.
At the moment I have 3 tasks blocks and only the tasks block with no condition is being executed.
<tasks name="isProdCheck...
Started by reckoner on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
To implement the desired behavior, you could use Ant-contrib's if task as shown below:
<.
Maven 2.x :)
UPDATE: It appears that the OP is actually using Maven 2 so I'll update my question accordingly.
|
|
I have a long running rake task. Every now and then I print an update to the screen to let me know how far along the task has come.
puts "Almost there..."
My problem is all the puts statements seem to buffer somewhere and won't print to the screen until...
Started by Janak on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
May be you could flush the standart output:
STDOUT.flush
STDOUT.sync = true .
|
|
I'm having troubling completing a task the RESTful way. I have a "tasks" controller, and also a "complete_tasks" controller.
I have this in the complete_tasks_controller create action:
def create @task = Task.find(params[:id]) @task.completed_at = Time...
Started by andy on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
However you cannot create an item_to "Complete task", new_task_complete....
Gt; Retrieve PUT => Update DELETE => Destroy
The reason you're getting an error about only telling Rails you want to create a task with an id of one.
|