From: <br...@us...> - 2009-02-01 22:55:24
|
Revision: 467 http://acmcontester.svn.sourceforge.net/acmcontester/?rev=467&view=rev Author: brus07 Date: 2009-02-01 22:04:55 +0000 (Sun, 01 Feb 2009) Log Message: ----------- Added new sample EmptyPlugin to Plugin directory. Added Paths: ----------- ACMServer/trunk/ACMServer/Plugins/EmptyPlugin/ ACMServer/trunk/ACMServer/Plugins/EmptyPlugin/EmptyPlugin.cs ACMServer/trunk/ACMServer/Plugins/EmptyPlugin/EmptyPlugin.csproj ACMServer/trunk/ACMServer/Plugins/EmptyPlugin/Properties/ ACMServer/trunk/ACMServer/Plugins/EmptyPlugin/Properties/AssemblyInfo.cs Property changes on: ACMServer/trunk/ACMServer/Plugins/EmptyPlugin ___________________________________________________________________ Added: svn:ignore + bin obj Added: tsvn:logminsize + 5 Added: ACMServer/trunk/ACMServer/Plugins/EmptyPlugin/EmptyPlugin.cs =================================================================== --- ACMServer/trunk/ACMServer/Plugins/EmptyPlugin/EmptyPlugin.cs (rev 0) +++ ACMServer/trunk/ACMServer/Plugins/EmptyPlugin/EmptyPlugin.cs 2009-02-01 22:04:55 UTC (rev 467) @@ -0,0 +1,14 @@ +using System; +using AcmContester.Plugins.PluginsFramework; +using AcmContester.Library.LibraryExtention; + +namespace AcmContester.Plugins.EmptyPlugin +{ + public class EmptyPlugin : BaseMediatorPlugin + { + public override void Send(SystemMessage message) + { + throw new Exception("The method or operation is not implemented."); + } + } +} Added: ACMServer/trunk/ACMServer/Plugins/EmptyPlugin/EmptyPlugin.csproj =================================================================== --- ACMServer/trunk/ACMServer/Plugins/EmptyPlugin/EmptyPlugin.csproj (rev 0) +++ ACMServer/trunk/ACMServer/Plugins/EmptyPlugin/EmptyPlugin.csproj 2009-02-01 22:04:55 UTC (rev 467) @@ -0,0 +1,57 @@ +<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> + <PropertyGroup> + <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> + <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> + <ProductVersion>8.0.50727</ProductVersion> + <SchemaVersion>2.0</SchemaVersion> + <ProjectGuid>{74FB3B7A-5D91-46B3-9F15-F38136725AED}</ProjectGuid> + <OutputType>Library</OutputType> + <AppDesignerFolder>Properties</AppDesignerFolder> + <RootNamespace>AcmContester.Plugins.EmptyPlugin</RootNamespace> + <AssemblyName>EmptyPlugin</AssemblyName> + </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="System" /> + <Reference Include="System.Data" /> + <Reference Include="System.Xml" /> + </ItemGroup> + <ItemGroup> + <Compile Include="EmptyPlugin.cs" /> + <Compile Include="Properties\AssemblyInfo.cs" /> + </ItemGroup> + <ItemGroup> + <ProjectReference Include="..\..\Library\LibraryExtention\LibraryExtention.csproj"> + <Project>{A8135069-F8BA-4E5D-835F-3FF3F350AA5D}</Project> + <Name>LibraryExtention</Name> + </ProjectReference> + <ProjectReference Include="..\PluginsFramework\PluginsFramework.csproj"> + <Project>{69FB4176-F298-4AF7-B714-B6758AA9A58E}</Project> + <Name>PluginsFramework</Name> + </ProjectReference> + </ItemGroup> + <Import Project="$(MSBuildBinPath)\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> \ No newline at end of file Property changes on: ACMServer/trunk/ACMServer/Plugins/EmptyPlugin/Properties ___________________________________________________________________ Added: tsvn:logminsize + 5 Added: ACMServer/trunk/ACMServer/Plugins/EmptyPlugin/Properties/AssemblyInfo.cs =================================================================== --- ACMServer/trunk/ACMServer/Plugins/EmptyPlugin/Properties/AssemblyInfo.cs (rev 0) +++ ACMServer/trunk/ACMServer/Plugins/EmptyPlugin/Properties/AssemblyInfo.cs 2009-02-01 22:04:55 UTC (rev 467) @@ -0,0 +1,35 @@ +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("EmptyPlugin")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("Home")] +[assembly: AssemblyProduct("EmptyPlugin")] +[assembly: AssemblyCopyright("Copyright © Home 2009")] +[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("e7d1eae8-b3f6-4459-8904-402377f9f52d")] + +// 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 Revision and Build Numbers +// by using the '*' as shown below: +[assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyFileVersion("1.0.0.0")] This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |