mirror of
https://bitbucket.org/mfeemster/fractorium.git
synced 2025-07-01 05:46:06 -04:00
--Code changes
-Fix up .pro file for building with the new examples files. -Rename FlameExamples folder to Examples.
This commit is contained in:
@ -540,16 +540,16 @@ namespace apoconv
|
||||
|
||||
foreach (var file in files)
|
||||
{
|
||||
var lines = File.ReadAllLines(file);
|
||||
var lines = System.IO.File.ReadAllLines(file);
|
||||
tb1lines.AddRange(lines.ToList());
|
||||
final += Apo2Fractorium(lines, true);
|
||||
/*
|
||||
/*
|
||||
|
||||
var guid = Guid.NewGuid();
|
||||
var fileonly = System.IO.Path.GetFileName(file);
|
||||
final += "<Component Id=\"" + fileonly + "\" Guid=\"" + guid + "\">\n";
|
||||
final += "\t<File Id=\"" + fileonly + "\" Source = \"$(var.SolutionDir)..\\..\\..\\Data\\" + fileonly + "\" KeyPath=\"yes\" Checksum=\"yes\" ReadOnly=\"yes\"/>\n";
|
||||
final += "</Component>\n\n";
|
||||
var guid = Guid.NewGuid();
|
||||
var fileonly = System.IO.Path.GetFileName(file);
|
||||
final += "<Component Id=\"" + fileonly + "\" Guid=\"" + guid + "\">\n";
|
||||
final += "\t<File Id=\"" + fileonly + "\" Source = \"$(var.SolutionDir)..\\..\\..\\Data\\" + fileonly + "\" KeyPath=\"yes\" Checksum=\"yes\" ReadOnly=\"yes\"/>\n";
|
||||
final += "</Component>\n\n";
|
||||
*/
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user