Click here to Skip to main content
15,896,063 members
Articles / Programming Languages / XML

A Library for Writing/Building Scripts in C#

Rate me:
Please Sign up or sign in to vote.
4.15/5 (6 votes)
14 Oct 2008CPOL3 min read 54.5K   503   55  
Designed to make it easier to write scripts such as JavaScript in C#

Microsoft Visual Studio Solution File, Format Version 9.00
# Visual Studio 2005
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClockWork.ScriptBuilder", "ClockWork.ScriptBuilder\ClockWork.ScriptBuilder.csproj", "{35EF9722-991A-4F07-9E0D-30687DB81AC8}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClockWork.ScriptBuilder.Test", "ClockWork.ScriptBuilder.Test\ClockWork.ScriptBuilder.Test.csproj", "{48B45628-0D91-4532-8086-C1FCD044CA13}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClockWork.ScriptBuilder.Doc", "ClockWork.ScriptBuilder.Doc\ClockWork.ScriptBuilder.Doc.csproj", "{7CF778A1-6ED9-4588-AD89-760454B85BC2}"
	ProjectSection(WebsiteProperties) = preProject
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.Debug = "False"
	EndProjectSection
EndProject
Project("{E24C65DC-7377-472B-9ABA-BC803B73C61A}") = "C:\...\ClockWork.ScriptBuilder.WebSite\", "ClockWork.ScriptBuilder.WebSite\", "{1BA9D970-1266-41E6-94D4-1C20D7696DAF}"
	ProjectSection(WebsiteProperties) = preProject
		SccProjectName = "Svn"
		SccAuxPath = "Svn"
		SccLocalPath = "Svn"
		SccProvider = "SubversionScc"
		ProjectReferences = "{35EF9722-991A-4F07-9E0D-30687DB81AC8}|ClockWork.ScriptBuilder.dll;"
		Debug.AspNetCompiler.VirtualPath = "/ClockWork.ScriptBuilder.WebSite"
		Debug.AspNetCompiler.PhysicalPath = "ClockWork.ScriptBuilder.WebSite\"
		Debug.AspNetCompiler.TargetPath = "PrecompiledWeb\ClockWork.ScriptBuilder.WebSite\"
		Debug.AspNetCompiler.Updateable = "true"
		Debug.AspNetCompiler.ForceOverwrite = "true"
		Debug.AspNetCompiler.FixedNames = "false"
		Debug.AspNetCompiler.Debug = "True"
		Release.AspNetCompiler.VirtualPath = "/ClockWork.ScriptBuilder.WebSite"
		Release.AspNetCompiler.PhysicalPath = "ClockWork.ScriptBuilder.WebSite\"
		Release.AspNetCompiler.TargetPath = "PrecompiledWeb\ClockWork.ScriptBuilder.WebSite\"
		Release.AspNetCompiler.Updateable = "true"
		Release.AspNetCompiler.ForceOverwrite = "true"
		Release.AspNetCompiler.FixedNames = "false"
		Release.AspNetCompiler.Debug = "False"
		VWDPort = "2264"
		DefaultWebSiteLanguage = "Visual C#"
	EndProjectSection
EndProject
Global
	GlobalSection(SubversionScc) = preSolution
		Svn-Managed = True
		Manager = AnkhSVN - Subversion Support for Visual Studio
	EndGlobalSection
	GlobalSection(SolutionConfigurationPlatforms) = preSolution
		Debug|.NET = Debug|.NET
		Debug|Any CPU = Debug|Any CPU
		Debug|Mixed Platforms = Debug|Mixed Platforms
		Release|.NET = Release|.NET
		Release|Any CPU = Release|Any CPU
		Release|Mixed Platforms = Release|Mixed Platforms
	EndGlobalSection
	GlobalSection(ProjectConfigurationPlatforms) = postSolution
		{35EF9722-991A-4F07-9E0D-30687DB81AC8}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{35EF9722-991A-4F07-9E0D-30687DB81AC8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{35EF9722-991A-4F07-9E0D-30687DB81AC8}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{35EF9722-991A-4F07-9E0D-30687DB81AC8}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{35EF9722-991A-4F07-9E0D-30687DB81AC8}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{35EF9722-991A-4F07-9E0D-30687DB81AC8}.Release|.NET.ActiveCfg = Release|Any CPU
		{35EF9722-991A-4F07-9E0D-30687DB81AC8}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{35EF9722-991A-4F07-9E0D-30687DB81AC8}.Release|Any CPU.Build.0 = Release|Any CPU
		{35EF9722-991A-4F07-9E0D-30687DB81AC8}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{35EF9722-991A-4F07-9E0D-30687DB81AC8}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{48B45628-0D91-4532-8086-C1FCD044CA13}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{48B45628-0D91-4532-8086-C1FCD044CA13}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{48B45628-0D91-4532-8086-C1FCD044CA13}.Debug|Any CPU.Build.0 = Debug|Any CPU
		{48B45628-0D91-4532-8086-C1FCD044CA13}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{48B45628-0D91-4532-8086-C1FCD044CA13}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
		{48B45628-0D91-4532-8086-C1FCD044CA13}.Release|.NET.ActiveCfg = Release|Any CPU
		{48B45628-0D91-4532-8086-C1FCD044CA13}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{48B45628-0D91-4532-8086-C1FCD044CA13}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{48B45628-0D91-4532-8086-C1FCD044CA13}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{7CF778A1-6ED9-4588-AD89-760454B85BC2}.Debug|.NET.ActiveCfg = Debug|Any CPU
		{7CF778A1-6ED9-4588-AD89-760454B85BC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
		{7CF778A1-6ED9-4588-AD89-760454B85BC2}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
		{7CF778A1-6ED9-4588-AD89-760454B85BC2}.Release|.NET.ActiveCfg = Release|Any CPU
		{7CF778A1-6ED9-4588-AD89-760454B85BC2}.Release|Any CPU.ActiveCfg = Release|Any CPU
		{7CF778A1-6ED9-4588-AD89-760454B85BC2}.Release|Any CPU.Build.0 = Release|Any CPU
		{7CF778A1-6ED9-4588-AD89-760454B85BC2}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
		{7CF778A1-6ED9-4588-AD89-760454B85BC2}.Release|Mixed Platforms.Build.0 = Release|Any CPU
		{1BA9D970-1266-41E6-94D4-1C20D7696DAF}.Debug|.NET.ActiveCfg = Debug|.NET
		{1BA9D970-1266-41E6-94D4-1C20D7696DAF}.Debug|.NET.Build.0 = Debug|.NET
		{1BA9D970-1266-41E6-94D4-1C20D7696DAF}.Debug|Any CPU.ActiveCfg = Debug|.NET
		{1BA9D970-1266-41E6-94D4-1C20D7696DAF}.Debug|Mixed Platforms.ActiveCfg = Debug|.NET
		{1BA9D970-1266-41E6-94D4-1C20D7696DAF}.Debug|Mixed Platforms.Build.0 = Debug|.NET
		{1BA9D970-1266-41E6-94D4-1C20D7696DAF}.Release|.NET.ActiveCfg = Debug|.NET
		{1BA9D970-1266-41E6-94D4-1C20D7696DAF}.Release|.NET.Build.0 = Debug|.NET
		{1BA9D970-1266-41E6-94D4-1C20D7696DAF}.Release|Any CPU.ActiveCfg = Debug|.NET
		{1BA9D970-1266-41E6-94D4-1C20D7696DAF}.Release|Mixed Platforms.ActiveCfg = Debug|.NET
		{1BA9D970-1266-41E6-94D4-1C20D7696DAF}.Release|Mixed Platforms.Build.0 = Debug|.NET
	EndGlobalSection
	GlobalSection(SolutionProperties) = preSolution
		HideSolutionNode = FALSE
	EndGlobalSection
EndGlobal

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 Code Project Open License (CPOL)


Written By
Software Developer (Senior) Web Site Advantage
Australia Australia
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions