|
|
Rank: Newbie
Joined: 11/19/2007 Posts: 1
|
I've just downloaded the zip from the site, unpacked it and loaded it into Visual Studio. Selected Build Website.
And I get this error??...
Could not create type 'umbraco.webservices.NodeService'
Any ideas?
|
|
Rank: Newbie
Joined: 5/21/2008 Posts: 7
|
Same here
|
|
 Rank: Fanatic
Joined: 11/24/2006 Posts: 323 Location: Stockholm, Sweden
|
You don't need to make a build in VS to install Umbraco - download the installer (MSI-package) or the ZIP for manual install. The only reason to open up the source code in VS would be if you wanted to make alterations to the source code.
Web Developer at Kärnhuset - http://www.karnhuset.net - Stockholm, Sweden
|
|
Rank: Newbie
Joined: 6/4/2008 Posts: 12 Location: Ukraine
|
what if i really want to debug umbraco? i wanna dynamically replace all DLLs in web site folder during compilation in VS. also i want to have ability of debugging umbraco web site in test environment.
any thougths how to make it in the best way?
|
|
Rank: Newbie
Joined: 6/4/2008 Posts: 12 Location: Ukraine
|
I resolved the problem in my way. Here it goes. 0. Find matching version of sources 1. Locate solution file umbraco.sln (it comes with sorce codes). 2. Open it in VS. 3. Add empty class library project to it. I named it dllcollector. 4. Make this project reffer every project in the solution 5. Go to Project Properties->Buld events->post-buld events command line 6. Put there "$(SolutionDir)CopyDlls.bat" "$(TargetDir)*.*" (all what is in blue) 7. go to solution folder an add file CopyDlls.bat with content like this (also all what is in blue) xcopy %1 "C:\Inetpub\wwwrootumbraco2\bin\*.*" /Y it'll refresh content of web site located in wwwrootumbraco2 every time when you compile solution or project dllcollector.
When you need debug core umbraco code you just open this solution and attach to aspnet_wp.exe process. i believe it could help me better understand system.
Try and enjoy.
P.S. Never even try debug in VS on production system
|
|
Rank: Enthusiast
Joined: 2/5/2008 Posts: 41
|
Try this. Worked for me, although maybe I should have added a disclaimer in there somewhere saying I'm not responsible if you f**k everything up following my suggestion. www.punkyduck.comThe iron heals, mends, fortifies, toughens, vitalizes, enables, engages, entertains, fulfills, instructs, humbles and makes a good door stop... Dave Draper
|
|
Rank: Newbie
Joined: 8/27/2008 Posts: 1 Location: Chicago
|
This worked for me in Vista:
From Solution Explorer locate the file at webservices/api/NodeService.asmx Right click on the file and select the option "Exclude From Project"
|
|
|
Guest |