Removed "..\" -> "../" translation from Build.exe, as it caused issues with Visual Studio paths.
This commit is contained in:
parent
cc3071d979
commit
113b97ef36
3 changed files with 2 additions and 4 deletions
BIN
Build.exe
BIN
Build.exe
Binary file not shown.
|
@ -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)
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue