* Prebuild aka 'EverQuest'
parent
aac1863821
commit
9e3b51cc5c
|
@ -1,11 +1,11 @@
|
|||
Microsoft Visual Studio Solution File, Format Version 9.00
|
||||
# Visual Studio 2005
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Prebuild", "src\Prebuild.csproj", "{29B5ED2E-5760-4092-8635-47A222CEF95A}"
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Prebuild", "src\Prebuild.csproj", "{A5CC8344-BEE4-442E-92F1-FBCB05D6AB78}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{468F1D07-AD17-4CC3-ABD0-2CA268E4E1A6}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
prebuild.xml = prebuild.xml
|
||||
prebuild = prebuild
|
||||
prebuild.xml = prebuild.xml
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
|
@ -14,10 +14,10 @@ Global
|
|||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{29B5ED2E-5760-4092-8635-47A222CEF95A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{29B5ED2E-5760-4092-8635-47A222CEF95A}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{29B5ED2E-5760-4092-8635-47A222CEF95A}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{29B5ED2E-5760-4092-8635-47A222CEF95A}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{A5CC8344-BEE4-442E-92F1-FBCB05D6AB78}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{A5CC8344-BEE4-442E-92F1-FBCB05D6AB78}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{A5CC8344-BEE4-442E-92F1-FBCB05D6AB78}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{A5CC8344-BEE4-442E-92F1-FBCB05D6AB78}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
|
|
@ -452,10 +452,10 @@ namespace Prebuild.Core.Utilities
|
|||
ret += "." + ext;
|
||||
}
|
||||
|
||||
foreach(char c in Path.GetInvalidPathChars())
|
||||
{
|
||||
ret = ret.Replace(c, '_');
|
||||
}
|
||||
//foreach(char c in Path.GetInvalidPathChars())
|
||||
//{
|
||||
// ret = ret.Replace(c, '_');
|
||||
//}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
@ -477,10 +477,10 @@ namespace Prebuild.Core.Utilities
|
|||
|
||||
ret += name;
|
||||
|
||||
foreach (char c in Path.GetInvalidPathChars())
|
||||
{
|
||||
ret = ret.Replace(c, '_');
|
||||
}
|
||||
//foreach (char c in Path.GetInvalidPathChars())
|
||||
//{
|
||||
// ret = ret.Replace(c, '_');
|
||||
//}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
@ -494,10 +494,10 @@ namespace Prebuild.Core.Utilities
|
|||
{
|
||||
string ret = EndPath(NormalizePath(path));
|
||||
|
||||
foreach (char c in Path.GetInvalidPathChars())
|
||||
{
|
||||
ret = ret.Replace(c, '_');
|
||||
}
|
||||
//foreach (char c in Path.GetInvalidPathChars())
|
||||
//{
|
||||
// ret = ret.Replace(c, '_');
|
||||
//}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<ProjectType>Local</ProjectType>
|
||||
<ProductVersion>8.0.50727</ProductVersion>
|
||||
<SchemaVersion>2.0</SchemaVersion>
|
||||
<ProjectGuid>{29B5ED2E-5760-4092-8635-47A222CEF95A}</ProjectGuid>
|
||||
<ProjectGuid>{A5CC8344-BEE4-442E-92F1-FBCB05D6AB78}</ProjectGuid>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ApplicationIcon>App.ico</ApplicationIcon>
|
||||
|
@ -17,7 +17,8 @@
|
|||
<DefaultTargetSchema>IE50</DefaultTargetSchema>
|
||||
<DelaySign>false</DelaySign>
|
||||
<OutputType>Exe</OutputType>
|
||||
<AppDesignerFolder></AppDesignerFolder>
|
||||
<AppDesignerFolder>
|
||||
</AppDesignerFolder>
|
||||
<RootNamespace>Prebuild</RootNamespace>
|
||||
<StartupObject>Prebuild.Prebuild</StartupObject>
|
||||
<FileUpgradeFlags>
|
||||
|
@ -30,7 +31,8 @@
|
|||
<ConfigurationOverrideFile>
|
||||
</ConfigurationOverrideFile>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<DocumentationFile></DocumentationFile>
|
||||
<DocumentationFile>
|
||||
</DocumentationFile>
|
||||
<DebugSymbols>True</DebugSymbols>
|
||||
<FileAlignment>4096</FileAlignment>
|
||||
<Optimize>False</Optimize>
|
||||
|
@ -48,7 +50,8 @@
|
|||
<ConfigurationOverrideFile>
|
||||
</ConfigurationOverrideFile>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<DocumentationFile></DocumentationFile>
|
||||
<DocumentationFile>
|
||||
</DocumentationFile>
|
||||
<DebugSymbols>False</DebugSymbols>
|
||||
<FileAlignment>4096</FileAlignment>
|
||||
<Optimize>True</Optimize>
|
||||
|
@ -59,17 +62,6 @@
|
|||
<WarningLevel>4</WarningLevel>
|
||||
<NoWarn>1595</NoWarn>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System.EnterpriseServices" >
|
||||
<HintPath>\System.EnterpriseServices.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Xml" >
|
||||
<HintPath>\System.Xml.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" >
|
||||
<HintPath>\System.dll</HintPath>
|
||||
</Reference>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
@ -192,6 +184,11 @@
|
|||
<SubType>Code</SubType>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.EnterpriseServices" />
|
||||
<Reference Include="System.XML" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSHARP.Targets" />
|
||||
<PropertyGroup>
|
||||
<PreBuildEvent>
|
||||
|
|
|
@ -34,7 +34,7 @@
|
|||
|
||||
<!-- Core OpenSim Projects -->
|
||||
|
||||
<Project name="OpenSim.Framework" path="OpenSim.Framework" type="Library">
|
||||
<Project name="OpenSim.Framework" path="./OpenSim.Framework" type="Library">
|
||||
<Configuration name="Debug">
|
||||
<Options>
|
||||
<OutputPath>../bin/</OutputPath>
|
||||
|
|
Loading…
Reference in New Issue