Set svn:eol-style.

afrisby
Jeff Ames 2007-12-28 08:56:44 +00:00
parent 79496381fc
commit 1a484fcabf
3 changed files with 60 additions and 60 deletions

View File

@ -25,8 +25,8 @@
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
* *
*/ */
using libsecondlife; using libsecondlife;
namespace OpenSim.Region.Capabilities namespace OpenSim.Region.Capabilities
{ {
[LLSDMap] [LLSDMap]

View File

@ -26,8 +26,8 @@
* *
*/ */
using libsecondlife; using libsecondlife;
namespace OpenSim.Region.Capabilities namespace OpenSim.Region.Capabilities
{ {
[LLSDMap] [LLSDMap]

View File

@ -1,56 +1,56 @@
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Text; using System.Text;
using Prebuild.Core.Attributes; using Prebuild.Core.Attributes;
namespace Prebuild.Core.Targets namespace Prebuild.Core.Targets
{ {
[Target("vs2008")] [Target("vs2008")]
public class VS2008Target : VS2005Target public class VS2008Target : VS2005Target
{ {
protected override string SolutionTag protected override string SolutionTag
{ {
get { return "# Visual Studio 2008"; } get { return "# Visual Studio 2008"; }
} }
protected override string SolutionVersion protected override string SolutionVersion
{ {
get get
{ {
return "10.00"; return "10.00";
} }
} }
protected override string VersionName protected override string VersionName
{ {
get get
{ {
return "Visual C# 2008"; return "Visual C# 2008";
} }
} }
protected override string ToolsVersionXml protected override string ToolsVersionXml
{ {
get get
{ {
return " ToolsVersion=\"3.5\""; return " ToolsVersion=\"3.5\"";
} }
} }
protected override string ProductVersion protected override string ProductVersion
{ {
get get
{ {
return "9.0.21022"; return "9.0.21022";
} }
} }
public override string Name public override string Name
{ {
get get
{ {
return "vs2008"; return "vs2008";
} }
} }
} }
} }