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

43
installer/AMXXRelease/ModTFC.cs Executable file
View File

@ -0,0 +1,43 @@
using System;
namespace AMXXRelease
{
/// <summary>
/// Summary description for ModTFC.
/// </summary>
public class ModTFC : AMod
{
public ModTFC()
{
AddModules();
AddPlugins();
}
public override sealed string GetName()
{
return "tfc";
}
private void AddPlugins()
{
AddPlugin("plmenu");
AddPlugin("stats_logging");
AddPlugin("statssounds");
AddPlugin("stats");
Plugin pl = AddPlugin("tfcstats");
pl.outdir = "data";
}
private void AddModules()
{
Module tfcx = new Module();
tfcx.sourcedir = "dlls\\tfc\\tfcx";
tfcx.vcproj = "tfcx";
tfcx.projname = "tfcx_amxx";
tfcx.bindir = "msvc";
m_Modules.Add(tfcx);
}
}
}