Skip to content

Commit

Permalink
parsing file names for copying
Browse files Browse the repository at this point in the history
  • Loading branch information
cthulhu-bot committed May 17, 2013
1 parent 219c1ee commit 7adac1f
Show file tree
Hide file tree
Showing 11 changed files with 3 additions and 1 deletion.
Binary file modified bin/Debug/ECSSS_Documenter.exe
Binary file not shown.
Binary file modified bin/Debug/ECSSS_Documenter.pdb
Binary file not shown.
Binary file modified bin/Release/ECSSS_Documenter.exe
Binary file not shown.
Binary file modified bin/Release/ECSSS_Documenter.pdb
Binary file not shown.
Binary file modified obj/x86/Debug/DesignTimeResolveAssemblyReferencesInput.cache
Binary file not shown.
Binary file modified obj/x86/Debug/ECSSS_Documenter.exe
Binary file not shown.
Binary file modified obj/x86/Debug/ECSSS_Documenter.pdb
Binary file not shown.
Binary file modified obj/x86/Release/DesignTimeResolveAssemblyReferencesInput.cache
Binary file not shown.
Binary file modified obj/x86/Release/ECSSS_Documenter.exe
Binary file not shown.
Binary file modified obj/x86/Release/ECSSS_Documenter.pdb
Binary file not shown.
4 changes: 3 additions & 1 deletion src/documenter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ static void Main(string[] args)
FileSystem fs = new FileSystem(ecsss_root_source, targetExtensions, targetDirectories);
foreach (string s in fs.files)
{
Console.WriteLine(s);
string str = s.Replace('\\', '.');
str = str.Remove(0, str.IndexOf("csss") + 5);
Console.WriteLine(str);
}
Console.WriteLine("Press any key to continue...");
Console.ReadLine();
Expand Down

0 comments on commit 7adac1f

Please sign in to comment.