mirror of
https://github.com/Ryujinx/Opentk.git
synced 2025-01-11 13:45:33 +00:00
Removed "..\" -> "../" translation from Build.exe, as it caused issues with Visual Studio paths.
This commit is contained in:
parent
cc3071d979
commit
113b97ef36
|
@ -230,8 +230,8 @@ Assembly signing:
|
||||||
static void ApplyMonoDevelopWorkarounds(string solution)
|
static void ApplyMonoDevelopWorkarounds(string solution)
|
||||||
{
|
{
|
||||||
File.WriteAllText(solution, File.ReadAllText(solution)
|
File.WriteAllText(solution, File.ReadAllText(solution)
|
||||||
.Replace("AssemblyOriginatorKeyFile", "AssemblyKeyFile")
|
.Replace("AssemblyOriginatorKeyFile", "AssemblyKeyFile"));
|
||||||
.Replace(@"..\", @"../"));
|
//.Replace(@"..\", @"../")); // Causes problems in visual studio
|
||||||
}
|
}
|
||||||
|
|
||||||
static void DeleteDirectories(string root_path, string search)
|
static void DeleteDirectories(string root_path, string search)
|
||||||
|
|
|
@ -151,8 +151,6 @@
|
||||||
<Match path="." pattern="*.rtf" recurse="true" buildAction="EmbeddedResource" />
|
<Match path="." pattern="*.rtf" recurse="true" buildAction="EmbeddedResource" />
|
||||||
<Match path="." pattern="*.resx" 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="../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.dll.config" buildAction="None" copyToOutput="Always"/>
|
||||||
<Match path="../OpenTK" pattern="OpenTK.Compatibility.dll.config" buildAction="None" copyToOutput="Always"/>
|
<Match path="../OpenTK" pattern="OpenTK.Compatibility.dll.config" buildAction="None" copyToOutput="Always"/>
|
||||||
</Files>
|
</Files>
|
||||||
|
|
Loading…
Reference in a new issue