Removed "..\" -> "../" translation from Build.exe, as it caused issues with Visual Studio paths.

This commit is contained in:
the_fiddler 2009-09-06 09:27:17 +00:00
parent cc3071d979
commit 113b97ef36
3 changed files with 2 additions and 4 deletions

BIN
Build.exe

Binary file not shown.

View file

@ -230,8 +230,8 @@ Assembly signing:
static void ApplyMonoDevelopWorkarounds(string solution)
{
File.WriteAllText(solution, File.ReadAllText(solution)
.Replace("AssemblyOriginatorKeyFile", "AssemblyKeyFile")
.Replace(@"..\", @"../"));
.Replace("AssemblyOriginatorKeyFile", "AssemblyKeyFile"));
//.Replace(@"..\", @"../")); // Causes problems in visual studio
}
static void DeleteDirectories(string root_path, string search)

View file

@ -151,8 +151,6 @@
<Match path="." pattern="*.rtf" recurse="true" buildAction="EmbeddedResource" />
<Match path="." pattern="*.resx" recurse="true" buildAction="EmbeddedResource"/>
<Match path="../Examples/Data" pattern="^.*\.(bmp|png|jpg|txt|glsl|wav|ogg)$" useRegex="true" recurse="true" buildAction="None" copyToOutput="Always"/>
<Match path="./Data" pattern="*.txt" recurse="true" buildAction="None" copyToOutput="Always"/>
<Match path="./Data" pattern="*.glsl" recurse="true" buildAction="None" copyToOutput="Always"/>
<Match path="../OpenTK" pattern="OpenTK.dll.config" buildAction="None" copyToOutput="Always"/>
<Match path="../OpenTK" pattern="OpenTK.Compatibility.dll.config" buildAction="None" copyToOutput="Always"/>
</Files>