committed C# releaser

This commit is contained in:
David Anderson
2005-08-02 06:28:41 +00:00
parent 25cbe60bf8
commit cc393d0e8d
17 changed files with 1172 additions and 0 deletions

34
installer/AMXXRelease/Config.cs Executable file
View File

@ -0,0 +1,34 @@
using System;
namespace AMXXRelease
{
/// <summary>
/// Summary description for Config.
/// </summary>
public class Config
{
public Config()
{
}
public string GetSourceTree()
{
return "C:\\real\\code\\amxmodx";
}
public string OutputPath()
{
return "C:\\real\\done";
}
public string DevenvPath()
{
return "C:\\Program Files\\Microsoft Visual Studio .NET 2003\\Common7\\IDE\\devenv.com";
}
public string PathToZip()
{
return "C:\\Windows\\zip.exe";
}
}
}