Click here to Skip to main content
15,884,473 members
Articles / Programming Languages / XML

Sedge: An Automated Error Reporting Tool

Rate me:
Please Sign up or sign in to vote.
4.94/5 (11 votes)
14 Jan 2010Ms-PL5 min read 38.3K   923   53  
This article describes Sedge - a highly customizable tool designed to help your customers create better error reports.
del /Q /F /S Bin\*.*
del /Q /F /S Output\*.*

devenv Sedge.sln /rebuild Release
Tools\NUnit\nunit-console.exe Sedge.nunit

pause

mkdir Output\sedge.bin
mkdir Output\sedge.src


xcopy *.txt Output\sedge.bin
xcopy Bin\Release\*.dll Output\sedge.bin
xcopy Bin\Release\*.exe Output\sedge.bin
xcopy Bin\Release\*.config Output\sedge.bin
xcopy Samples\QuickStart.sedge Output\sedge.bin
xcopy /E Resources\*.* Output\sedge.bin\Resources\
xcopy /E /EXCLUDE:Tools\xcopy_exclude Samples\*.* Output\sedge.bin\Samples\


xcopy /E /EXCLUDE:Tools\xcopy_exclude Libraries\*.* Output\sedge.src\Libraries\
xcopy /E Resources\*.* Output\sedge.src\Resources\
xcopy /E /EXCLUDE:Tools\xcopy_exclude Samples\*.* Output\sedge.src\Samples\
xcopy /E /EXCLUDE:Tools\xcopy_exclude Source\*.* Output\sedge.src\Source\
xcopy /E /EXCLUDE:Tools\xcopy_exclude TestData\*.* Output\sedge.src\TestData\
xcopy /E /EXCLUDE:Tools\xcopy_exclude Tools\*.* Output\sedge.src\Tools\
xcopy *.txt Output\sedge.src
xcopy *.cmd Output\sedge.src
xcopy *.nunit Output\sedge.src
xcopy *.sln Output\sedge.src



By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
Canada Canada
I am a software developer from Toronto with 15 years of experience in software design and development. My major professional area is the development of highly customized software solutions, including desktop and web applications. Industrial process automation and hardware-related software development are among my favorite projects and I enjoyed developing several applications for semiconductor manufacturing companies.

My blog: http://LunarFrog.com/blog

Comments and Discussions