-first official stable release
-fixed last known error (due to web front passing invalid sql syntax) -re-added stats. though still not working 100% -added welcome plugin
This commit is contained in:
parent
81c5fb60be
commit
c06cd191a2
@ -15,7 +15,7 @@ namespace IW4MAdmin
|
|||||||
|
|
||||||
static void Main(string[] args)
|
static void Main(string[] args)
|
||||||
{
|
{
|
||||||
Version = 0.95;
|
Version = 1.0;
|
||||||
double latestVersion = 0;
|
double latestVersion = 0;
|
||||||
handler = new ConsoleEventDelegate(OnProcessExit);
|
handler = new ConsoleEventDelegate(OnProcessExit);
|
||||||
SetConsoleCtrlHandler(handler, true);
|
SetConsoleCtrlHandler(handler, true);
|
||||||
|
Binary file not shown.
Binary file not shown.
@ -1,6 +1,12 @@
|
|||||||
opllllllllll
|
VERSION 1.0
|
||||||
|
CHANGELOG:
|
||||||
|
-first official stable release
|
||||||
|
-fixed last known error (due to web front passing invalid sql syntax)
|
||||||
|
-re-added stats. though still not working 100%
|
||||||
|
-added welcome plugin
|
||||||
|
|
||||||
VERSION 0.9.5
|
VERSION 0.9.5
|
||||||
|
CHANGELOG:
|
||||||
-Major refactoring to support plugins
|
-Major refactoring to support plugins
|
||||||
-*web front redux*
|
-*web front redux*
|
||||||
-lots of little fixes and stability improvements
|
-lots of little fixes and stability improvements
|
||||||
|
@ -22,6 +22,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Stats Plugin", "Stats Plugi
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharedLibrary", "SharedLibrary\SharedLibrary.csproj", "{D51EECEB-438A-47DA-870F-7D7B41BC24D6}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SharedLibrary", "SharedLibrary\SharedLibrary.csproj", "{D51EECEB-438A-47DA-870F-7D7B41BC24D6}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Welcome Plugin", "Welcome Plugin\Welcome Plugin.csproj", "{AF097E6B-48D5-4452-9CCF-0A81A21F341D}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
@ -44,6 +46,10 @@ Global
|
|||||||
{D51EECEB-438A-47DA-870F-7D7B41BC24D6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{D51EECEB-438A-47DA-870F-7D7B41BC24D6}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{D51EECEB-438A-47DA-870F-7D7B41BC24D6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{D51EECEB-438A-47DA-870F-7D7B41BC24D6}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{D51EECEB-438A-47DA-870F-7D7B41BC24D6}.Release|Any CPU.Build.0 = Release|Any CPU
|
{D51EECEB-438A-47DA-870F-7D7B41BC24D6}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{AF097E6B-48D5-4452-9CCF-0A81A21F341D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{AF097E6B-48D5-4452-9CCF-0A81A21F341D}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{AF097E6B-48D5-4452-9CCF-0A81A21F341D}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{AF097E6B-48D5-4452-9CCF-0A81A21F341D}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
@ -91,12 +91,13 @@ namespace StatsPlugin
|
|||||||
if (E.Type == Event.GType.Disconnect)
|
if (E.Type == Event.GType.Disconnect)
|
||||||
{
|
{
|
||||||
calculateAndSaveSkill(E.Origin);
|
calculateAndSaveSkill(E.Origin);
|
||||||
|
resetCounters(E.Origin.clientID);
|
||||||
E.Owner.Log.Write("Updated skill for disconnecting client #" + E.Origin.databaseID, Log.Level.Debug);
|
E.Owner.Log.Write("Updated skill for disconnecting client #" + E.Origin.databaseID, Log.Level.Debug);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (E.Type == Event.GType.Kill)
|
if (E.Type == Event.GType.Kill)
|
||||||
{
|
{
|
||||||
if (E.Origin == E.Target)
|
if (E.Origin == E.Target || E.Origin == null)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
Player Killer = E.Origin;
|
Player Killer = E.Origin;
|
||||||
@ -106,10 +107,8 @@ namespace StatsPlugin
|
|||||||
Kills[E.Origin.clientID]++;
|
Kills[E.Origin.clientID]++;
|
||||||
|
|
||||||
if ((lastKill[E.Origin.clientID] - DateTime.Now).TotalSeconds > 60)
|
if ((lastKill[E.Origin.clientID] - DateTime.Now).TotalSeconds > 60)
|
||||||
{
|
|
||||||
inactiveMinutes[E.Origin.clientID]++;
|
inactiveMinutes[E.Origin.clientID]++;
|
||||||
}
|
|
||||||
|
|
||||||
killerStats.Kills++;
|
killerStats.Kills++;
|
||||||
|
|
||||||
if (killerStats.Deaths == 0)
|
if (killerStats.Deaths == 0)
|
||||||
@ -119,14 +118,17 @@ namespace StatsPlugin
|
|||||||
|
|
||||||
playerStats.updateStats(Killer, killerStats);
|
playerStats.updateStats(Killer, killerStats);
|
||||||
|
|
||||||
killStreaks[E.Origin.clientID]++;
|
killStreaks[Killer.clientID] += 1;
|
||||||
deathStreaks[E.Origin.clientID] = 0;
|
deathStreaks[Killer.clientID] = 0;
|
||||||
|
|
||||||
Killer.Tell(messageOnStreak(killStreaks[E.Origin.clientID], deathStreaks[E.Origin.clientID]));
|
Killer.Tell(messageOnStreak(killStreaks[Killer.clientID], deathStreaks[Killer.clientID]));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (E.Type == Event.GType.Death)
|
if (E.Type == Event.GType.Death)
|
||||||
{
|
{
|
||||||
|
if (E.Origin == E.Target || E.Origin == null)
|
||||||
|
return;
|
||||||
|
|
||||||
Player Victim = E.Origin;
|
Player Victim = E.Origin;
|
||||||
PlayerStats victimStats = playerStats.getStats(Victim);
|
PlayerStats victimStats = playerStats.getStats(Victim);
|
||||||
|
|
||||||
@ -135,10 +137,10 @@ namespace StatsPlugin
|
|||||||
|
|
||||||
playerStats.updateStats(Victim, victimStats);
|
playerStats.updateStats(Victim, victimStats);
|
||||||
|
|
||||||
deathStreaks[E.Origin.clientID]++;
|
deathStreaks[Victim.clientID] += 1;
|
||||||
killStreaks[E.Origin.clientID] = 0;
|
killStreaks[Victim.clientID] = 0;
|
||||||
|
|
||||||
Victim.Tell(messageOnStreak(killStreaks[E.Origin.clientID], deathStreaks[E.Origin.clientID]));
|
Victim.Tell(messageOnStreak(killStreaks[Victim.clientID], deathStreaks[Victim.clientID]));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -247,7 +249,7 @@ namespace StatsPlugin
|
|||||||
{
|
{
|
||||||
get
|
get
|
||||||
{
|
{
|
||||||
return 0.2f;
|
return 0.3f;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
173
Welcome Plugin/CountryLookup.cs
Normal file
173
Welcome Plugin/CountryLookup.cs
Normal file
@ -0,0 +1,173 @@
|
|||||||
|
/* CountryLookup.cs
|
||||||
|
*
|
||||||
|
* Copyright (C) 2008 MaxMind, Inc. All Rights Reserved.
|
||||||
|
*
|
||||||
|
* This library is free software; you can redistribute it and/or
|
||||||
|
* modify it under the terms of the GNU General Public
|
||||||
|
* License as published by the Free Software Foundation; either
|
||||||
|
* version 2 of the License, or (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This library is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
* General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public
|
||||||
|
* License along with this library; if not, write to the Free Software
|
||||||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||||
|
*/
|
||||||
|
|
||||||
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
using System.Data;
|
||||||
|
using System.Net;
|
||||||
|
|
||||||
|
|
||||||
|
namespace CountryLookupProj
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Summary description for CountryLookup.
|
||||||
|
/// </summary>
|
||||||
|
public class CountryLookup
|
||||||
|
{
|
||||||
|
private FileStream fileInput;
|
||||||
|
private static long COUNTRY_BEGIN = 16776960;
|
||||||
|
private static string[] countryCode =
|
||||||
|
{ "--","AP","EU","AD","AE","AF","AG","AI","AL","AM","AN","AO","AQ","AR","AS","AT","AU","AW","AZ","BA","BB","BD","BE","BF","BG","BH","BI","BJ","BM","BN","BO","BR","BS","BT","BV","BW","BY","BZ","CA","CC","CD","CF","CG","CH","CI","CK","CL","CM","CN","CO","CR","CU","CV","CX","CY","CZ","DE","DJ","DK","DM","DO","DZ",
|
||||||
|
"EC","EE","EG","EH","ER","ES","ET","FI","FJ","FK","FM","FO","FR","FX","GA","GB","GD","GE","GF","GH","GI","GL","GM","GN","GP","GQ","GR","GS","GT","GU","GW","GY","HK","HM","HN","HR","HT","HU","ID","IE","IL","IN","IO","IQ","IR","IS","IT","JM","JO","JP","KE","KG","KH","KI","KM","KN","KP","KR","KW","KY","KZ",
|
||||||
|
"LA","LB","LC","LI","LK","LR","LS","LT","LU","LV","LY","MA","MC","MD","MG","MH","MK","ML","MM","MN","MO","MP","MQ","MR","MS","MT","MU","MV","MW","MX","MY","MZ","NA","NC","NE","NF","NG","NI","NL","NO","NP","NR","NU","NZ","OM","PA","PE","PF","PG","PH","PK","PL","PM","PN","PR","PS","PT","PW","PY","QA",
|
||||||
|
"RE","RO","RU","RW","SA","SB","SC","SD","SE","SG","SH","SI","SJ","SK","SL","SM","SN","SO","SR","ST","SV","SY","SZ","TC","TD","TF","TG","TH","TJ","TK","TM","TN","TO","TL","TR","TT","TV","TW","TZ","UA","UG","UM","US","UY","UZ","VA","VC","VE","VG","VI","VN","VU","WF","WS","YE","YT","RS","ZA","ZM","ME","ZW","A1","A2",
|
||||||
|
"O1","AX","GG","IM","JE","BL","MF"
|
||||||
|
};
|
||||||
|
private static string[] countryName =
|
||||||
|
{"N/A","Asia/Pacific Region","Europe","Andorra","United Arab Emirates","Afghanistan","Antigua and Barbuda","Anguilla","Albania","Armenia","Netherlands Antilles","Angola","Antarctica","Argentina","American Samoa","Austria","Australia","Aruba","Azerbaijan","Bosnia and Herzegovina","Barbados","Bangladesh","Belgium",
|
||||||
|
"Burkina Faso","Bulgaria","Bahrain","Burundi","Benin","Bermuda","Brunei Darussalam","Bolivia","Brazil","Bahamas","Bhutan","Bouvet Island","Botswana","Belarus","Belize","Canada","Cocos (Keeling) Islands","Congo, The Democratic Republic of the","Central African Republic","Congo","Switzerland","Cote D'Ivoire",
|
||||||
|
"Cook Islands","Chile","Cameroon","China","Colombia","Costa Rica","Cuba","Cape Verde","Christmas Island","Cyprus","Czech Republic","Germany","Djibouti","Denmark","Dominica","Dominican Republic","Algeria","Ecuador","Estonia","Egypt","Western Sahara","Eritrea","Spain","Ethiopia","Finland","Fiji","Falkland Islands (Malvinas)",
|
||||||
|
"Micronesia, Federated States of","Faroe Islands","France","France, Metropolitan","Gabon","United Kingdom","Grenada","Georgia","French Guiana","Ghana","Gibraltar","Greenland","Gambia","Guinea","Guadeloupe","Equatorial Guinea","Greece","South Georgia and the South Sandwich Islands","Guatemala","Guam","Guinea-Bissau","Guyana",
|
||||||
|
"Hong Kong","Heard Island and McDonald Islands","Honduras","Croatia","Haiti","Hungary","Indonesia","Ireland","Israel","India","British Indian Ocean Territory","Iraq","Iran, Islamic Republic of","Iceland","Italy","Jamaica","Jordan","Japan","Kenya","Kyrgyzstan","Cambodia","Kiribati","Comoros","Saint Kitts and Nevis",
|
||||||
|
"Korea, Democratic People's Republic of","Korea, Republic of","Kuwait","Cayman Islands","Kazakstan","Lao People's Democratic Republic","Lebanon","Saint Lucia","Liechtenstein","Sri Lanka","Liberia","Lesotho","Lithuania","Luxembourg","Latvia","Libyan Arab Jamahiriya","Morocco","Monaco","Moldova, Republic of","Madagascar",
|
||||||
|
"Marshall Islands","Macedonia","Mali","Myanmar","Mongolia","Macau","Northern Mariana Islands","Martinique","Mauritania","Montserrat","Malta","Mauritius","Maldives","Malawi","Mexico","Malaysia","Mozambique","Namibia","New Caledonia","Niger","Norfolk Island","Nigeria","Nicaragua","Netherlands",
|
||||||
|
"Norway","Nepal","Nauru","Niue","New Zealand","Oman","Panama","Peru","French Polynesia","Papua New Guinea","Philippines","Pakistan","Poland","Saint Pierre and Miquelon","Pitcairn Islands","Puerto Rico","Palestinian Territory","Portugal","Palau","Paraguay","Qatar","Reunion","Romania","Russian Federation","Rwanda","Saudi Arabia",
|
||||||
|
"Solomon Islands","Seychelles","Sudan","Sweden","Singapore","Saint Helena","Slovenia","Svalbard and Jan Mayen","Slovakia","Sierra Leone","San Marino","Senegal","Somalia","Suriname","Sao Tome and Principe","El Salvador","Syrian Arab Republic","Swaziland","Turks and Caicos Islands","Chad","French Southern Territories","Togo",
|
||||||
|
"Thailand","Tajikistan","Tokelau","Turkmenistan","Tunisia","Tonga","Timor-Leste","Turkey","Trinidad and Tobago","Tuvalu","Taiwan","Tanzania, United Republic of","Ukraine","Uganda","United States Minor Outlying Islands","United States","Uruguay","Uzbekistan","Holy See (Vatican City State)","Saint Vincent and the Grenadines",
|
||||||
|
"Venezuela","Virgin Islands, British","Virgin Islands, U.S.","Vietnam","Vanuatu","Wallis and Futuna","Samoa","Yemen","Mayotte","Serbia","South Africa","Zambia","Montenegro","Zimbabwe","Anonymous Proxy","Satellite Provider",
|
||||||
|
"Other","Aland Islands","Guernsey","Isle of Man","Jersey","Saint Barthelemy","Saint Martin"};
|
||||||
|
|
||||||
|
|
||||||
|
public CountryLookup(string fileName)
|
||||||
|
{
|
||||||
|
try
|
||||||
|
{
|
||||||
|
fileInput = new FileStream(fileName, FileMode.Open, FileAccess.Read);
|
||||||
|
}
|
||||||
|
catch (FileNotFoundException e)
|
||||||
|
{
|
||||||
|
Console.WriteLine("File " + fileName + " not found.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public string lookupCountryCode(string str)
|
||||||
|
{
|
||||||
|
IPAddress addr;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
addr = IPAddress.Parse(str);
|
||||||
|
}
|
||||||
|
catch (FormatException e)
|
||||||
|
{
|
||||||
|
return "--";
|
||||||
|
}
|
||||||
|
return lookupCountryCode(addr);
|
||||||
|
}
|
||||||
|
|
||||||
|
private long addrToNum(IPAddress addr)
|
||||||
|
{
|
||||||
|
long ipnum = 0;
|
||||||
|
byte[] b = BitConverter.GetBytes(addr.Address);
|
||||||
|
for (int i = 0; i < 4; ++i)
|
||||||
|
{
|
||||||
|
long y = b[i];
|
||||||
|
if (y < 0)
|
||||||
|
{
|
||||||
|
y += 256;
|
||||||
|
}
|
||||||
|
ipnum += y << ((3 - i) * 8);
|
||||||
|
}
|
||||||
|
//Console.WriteLine(ipnum);
|
||||||
|
return ipnum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public string lookupCountryCode(IPAddress addr)
|
||||||
|
{
|
||||||
|
return (countryCode[(int)seekCountry(0, addrToNum(addr), 31)]);
|
||||||
|
}
|
||||||
|
|
||||||
|
public string lookupCountryName(string str)
|
||||||
|
{
|
||||||
|
IPAddress addr;
|
||||||
|
try
|
||||||
|
{
|
||||||
|
addr = IPAddress.Parse(str);
|
||||||
|
}
|
||||||
|
catch (FormatException e)
|
||||||
|
{
|
||||||
|
return "N/A";
|
||||||
|
}
|
||||||
|
return lookupCountryName(addr);
|
||||||
|
}
|
||||||
|
|
||||||
|
public string lookupCountryName(IPAddress addr)
|
||||||
|
{
|
||||||
|
return (countryName[(int)seekCountry(0, addrToNum(addr), 31)]);
|
||||||
|
}
|
||||||
|
|
||||||
|
private long seekCountry(long offset, long ipnum, int depth)
|
||||||
|
{
|
||||||
|
byte[] buf = new byte[6];
|
||||||
|
long[] x = new long[2];
|
||||||
|
if (depth == 0)
|
||||||
|
{
|
||||||
|
Console.WriteLine("Error seeking country.");
|
||||||
|
}
|
||||||
|
try
|
||||||
|
{
|
||||||
|
fileInput.Seek(6 * offset, 0);
|
||||||
|
fileInput.Read(buf, 0, 6);
|
||||||
|
}
|
||||||
|
catch (IOException e)
|
||||||
|
{
|
||||||
|
Console.WriteLine("IO Exception");
|
||||||
|
}
|
||||||
|
for (int i = 0; i < 2; i++)
|
||||||
|
{
|
||||||
|
x[i] = 0;
|
||||||
|
for (int j = 0; j < 3; j++)
|
||||||
|
{
|
||||||
|
int y = buf[i * 3 + j];
|
||||||
|
if (y < 0)
|
||||||
|
{
|
||||||
|
y += 256;
|
||||||
|
}
|
||||||
|
x[i] += (y << (j * 8));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if ((ipnum & (1 << depth)) > 0)
|
||||||
|
{
|
||||||
|
if (x[1] >= COUNTRY_BEGIN)
|
||||||
|
{
|
||||||
|
return x[1] - COUNTRY_BEGIN;
|
||||||
|
}
|
||||||
|
return seekCountry(x[1], ipnum, depth - 1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
if (x[0] >= COUNTRY_BEGIN)
|
||||||
|
{
|
||||||
|
return x[0] - COUNTRY_BEGIN;
|
||||||
|
}
|
||||||
|
return seekCountry(x[0], ipnum, depth - 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
62
Welcome Plugin/Main.cs
Normal file
62
Welcome Plugin/Main.cs
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using SharedLibrary;
|
||||||
|
|
||||||
|
namespace Welcome_Plugin
|
||||||
|
{
|
||||||
|
public class Main : Plugin
|
||||||
|
{
|
||||||
|
public override string Author
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return "RaidMax";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public override float Version
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return 1.0f;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public override string Name
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return "Welcome Plugin";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void onEvent(Event E)
|
||||||
|
{
|
||||||
|
if (E.Type == Event.GType.Connect)
|
||||||
|
{
|
||||||
|
Player newPlayer = E.Origin;
|
||||||
|
|
||||||
|
if (newPlayer.Level > Player.Permission.User)
|
||||||
|
E.Owner.Broadcast(Utilities.levelToColor(newPlayer.Level) + " ^5" + newPlayer.Name + " ^7has joined the server.");
|
||||||
|
|
||||||
|
else
|
||||||
|
{
|
||||||
|
CountryLookupProj.CountryLookup CLT = new CountryLookupProj.CountryLookup("GeoIP.dat");
|
||||||
|
E.Owner.Broadcast("^5" + newPlayer.Name + " ^7hails from ^5" + CLT.lookupCountryName(newPlayer.IP));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void onLoad()
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
public override void onUnload()
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
36
Welcome Plugin/Properties/AssemblyInfo.cs
Normal file
36
Welcome Plugin/Properties/AssemblyInfo.cs
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
using System.Reflection;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
// General Information about an assembly is controlled through the following
|
||||||
|
// set of attributes. Change these attribute values to modify the information
|
||||||
|
// associated with an assembly.
|
||||||
|
[assembly: AssemblyTitle("Welcome Plugin")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("")]
|
||||||
|
[assembly: AssemblyProduct("Welcome Plugin")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2015")]
|
||||||
|
[assembly: AssemblyTrademark("")]
|
||||||
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
|
// Setting ComVisible to false makes the types in this assembly not visible
|
||||||
|
// to COM components. If you need to access a type in this assembly from
|
||||||
|
// COM, set the ComVisible attribute to true on that type.
|
||||||
|
[assembly: ComVisible(false)]
|
||||||
|
|
||||||
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
|
[assembly: Guid("fd92be42-d165-449d-8648-fb1f6638b451")]
|
||||||
|
|
||||||
|
// Version information for an assembly consists of the following four values:
|
||||||
|
//
|
||||||
|
// Major Version
|
||||||
|
// Minor Version
|
||||||
|
// Build Number
|
||||||
|
// Revision
|
||||||
|
//
|
||||||
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
|
// by using the '*' as shown below:
|
||||||
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
|
[assembly: AssemblyVersion("1.0.0.0")]
|
||||||
|
[assembly: AssemblyFileVersion("1.0.0.0")]
|
57
Welcome Plugin/Welcome Plugin.csproj
Normal file
57
Welcome Plugin/Welcome Plugin.csproj
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{AF097E6B-48D5-4452-9CCF-0A81A21F341D}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>Welcome_Plugin</RootNamespace>
|
||||||
|
<AssemblyName>Welcome Plugin</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="SharedLibrary">
|
||||||
|
<HintPath>..\Admin\lib\SharedLibrary.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="CountryLookup.cs" />
|
||||||
|
<Compile Include="Main.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
|
</Project>
|
Loading…
Reference in New Issue
Block a user