Account Options

  1. Sign in
The old Google Groups will be going away soon.
Switch to the new Google Groups.
Google Groups Home
« Groups Home
Publishing a web project
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  5 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Glenn Goodrich  
View profile  
 More options Dec 14 2009, 3:35 pm
From: Glenn Goodrich <gl...@goodrichs.net>
Date: Mon, 14 Dec 2009 12:35:47 -0800 (PST)
Local: Mon, Dec 14 2009 3:35 pm
Subject: Publishing a web project
I thought this was pretty cool and didn't it referenced in the group
or on the wiki, so I thought I'd share.

I have a VS.NET solution that has several projects, one of which is a
web project (WCF service, actually).  I wanted to mimic the
"Publish..." option from inside VS.NET in my rake build, and it was
trivially easy to do so.

The rake task looks like:

desc "Publish the web site"
msbuildtask :publish do |msb|
        msb.properties = {:configuration=>:Release}
        msb.targets [:ResolveReferences,:_CopyWebApplication]
        msb.properties = {
                :webprojectoutputdir=>"c:/temp/outputdir/",
                :outdir => "c:/temp/outputdir/bin/"
        }
        msb.solution = ".<path to project dir>/Project.Web.csproj"
end

I haven't tried to publish over http, yet.  My guess is if someone
wants to go that way, they'd fire up the Web Deployment Tool
(something I may look at soon)

Thanks to the following post for helping me get there.
http://blog.m.jedynak.pl/2008/03/publishing-web-application-with-msbu...

And thanks to this group for making Albacore.

Hope someone finds this useful,
Glenn


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Glenn Goodrich  
View profile  
 More options Dec 14 2009, 3:39 pm
From: Glenn Goodrich <gl...@goodrichs.net>
Date: Mon, 14 Dec 2009 15:39:11 -0500
Local: Mon, Dec 14 2009 3:39 pm
Subject: Re: [AlbacoreDev] Publishing a web project

Oh, and I'd be happy to put this on the wiki, if it's deemed useful.

On Dec 14, 2009, at 3:35 PM, Glenn Goodrich wrote:

Glenn
gl...@goodrichs.net

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Derick Bailey  
View profile  
 More options Dec 14 2009, 5:09 pm
From: Derick Bailey <derickbai...@gmail.com>
Date: Mon, 14 Dec 2009 16:09:35 -0600
Local: Mon, Dec 14 2009 5:09 pm
Subject: Re: [AlbacoreDev] Publishing a web project

that's pretty darn cool. would make a good blog post on albacorebuild.net :)
... or on your blog if you have one.

  -derick

--
- Derick Bailey
- @derickbailey
- http://DerickBailey.LosTechies.com

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Brian Donahue  
View profile  
 More options Dec 15 2009, 9:25 am
From: Brian Donahue <br...@pigeonmoon.com>
Date: Tue, 15 Dec 2009 09:25:29 -0500
Local: Tues, Dec 15 2009 9:25 am
Subject: Re: [AlbacoreDev] Publishing a web project

I've been meaning to dig into the Web Deployment Tool and see how I can use
that in my Rake build for archiving and synching web apps.  If you get
anywhere with it, definitely keep us posted and I'll do the same.

On Mon, Dec 14, 2009 at 5:09 PM, Derick Bailey <derickbai...@gmail.com>wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Derick Bailey  
View profile  
 More options Dec 21 2009, 9:43 am
From: Derick Bailey <derickbai...@gmail.com>
Date: Mon, 21 Dec 2009 08:43:57 -0600
Local: Mon, Dec 21 2009 9:43 am
Subject: Re: [AlbacoreDev] Publishing a web project

I looked at the Web Deployment tool for a few days, just before changing
jobs. i had planned on creating an albacore task for it... it was more
complicated than I had hoped, but i'm still planning on doing that ( just
added issue #39 to the list
http://github.com/derickbailey/Albacore/issues/#issue/39 )

  -derick

--
- Derick Bailey
- @derickbailey
- http://DerickBailey.LosTechies.com

 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »