From: <br...@us...> - 2009-01-16 19:54:50
|
Revision: 452 http://acmcontester.svn.sourceforge.net/acmcontester/?rev=452&view=rev Author: brus07 Date: 2009-01-16 19:54:44 +0000 (Fri, 16 Jan 2009) Log Message: ----------- Change project properties (AssemblyCompany, AssemblyCopyright, AssemblyDescription, RootNamespace, AssemblyName). Modified Paths: -------------- smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/LogDataGridView.Designer.cs smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/LogDataGridView.cs smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/LogDataGridView.csproj smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/Message.cs smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/Properties/AssemblyInfo.cs smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/SystemMessage.cs smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/SystemMessageMode.cs Property Changed: ---------------- smallprojects/sps/brus07/LogDataGridView/trunk/src/ Property changes on: smallprojects/sps/brus07/LogDataGridView/trunk/src ___________________________________________________________________ Added: svn:ignore + LogDataGridView.suo Modified: smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/LogDataGridView.Designer.cs =================================================================== --- smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/LogDataGridView.Designer.cs 2009-01-16 19:36:58 UTC (rev 451) +++ smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/LogDataGridView.Designer.cs 2009-01-16 19:54:44 UTC (rev 452) @@ -1,4 +1,4 @@ -namespace LogDataGridView +namespace sps.brus07.LogDataGridView { partial class LogDataGridView { Modified: smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/LogDataGridView.cs =================================================================== --- smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/LogDataGridView.cs 2009-01-16 19:36:58 UTC (rev 451) +++ smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/LogDataGridView.cs 2009-01-16 19:54:44 UTC (rev 452) @@ -3,7 +3,7 @@ using System.Windows.Forms; using System.Collections.Generic; -namespace LogDataGridView +namespace sps.brus07.LogDataGridView { public partial class LogDataGridView : UserControl Modified: smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/LogDataGridView.csproj =================================================================== --- smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/LogDataGridView.csproj 2009-01-16 19:36:58 UTC (rev 451) +++ smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/LogDataGridView.csproj 2009-01-16 19:54:44 UTC (rev 452) @@ -7,8 +7,8 @@ <ProjectGuid>{263DC481-D532-43CE-AB44-BC99918E5A44}</ProjectGuid> <OutputType>Library</OutputType> <AppDesignerFolder>Properties</AppDesignerFolder> - <RootNamespace>LogDataGridView</RootNamespace> - <AssemblyName>LogDataGridView</AssemblyName> + <RootNamespace>sps.brus07.LogDataGridView</RootNamespace> + <AssemblyName>sps.brus07.LogDataGridView</AssemblyName> </PropertyGroup> <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> <DebugSymbols>true</DebugSymbols> Modified: smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/Message.cs =================================================================== --- smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/Message.cs 2009-01-16 19:36:58 UTC (rev 451) +++ smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/Message.cs 2009-01-16 19:54:44 UTC (rev 452) @@ -2,7 +2,7 @@ using System.Windows.Forms; using System.Collections.Generic; -namespace LogDataGridView +namespace sps.brus07.LogDataGridView { public abstract class Message { Modified: smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/Properties/AssemblyInfo.cs =================================================================== --- smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/Properties/AssemblyInfo.cs 2009-01-16 19:36:58 UTC (rev 451) +++ smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/Properties/AssemblyInfo.cs 2009-01-16 19:54:44 UTC (rev 452) @@ -6,11 +6,11 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. [assembly: AssemblyTitle("LogDataGridView")] -[assembly: AssemblyDescription("")] +[assembly: AssemblyDescription("Using DataGridView for cool log output.")] [assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("Home")] +[assembly: AssemblyCompany("SPS.brus07")] [assembly: AssemblyProduct("LogDataGridView")] -[assembly: AssemblyCopyright("Copyright © Home 2008")] +[assembly: AssemblyCopyright("Copyright © SPS.brus07 2009")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] Modified: smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/SystemMessage.cs =================================================================== --- smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/SystemMessage.cs 2009-01-16 19:36:58 UTC (rev 451) +++ smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/SystemMessage.cs 2009-01-16 19:54:44 UTC (rev 452) @@ -3,7 +3,7 @@ using System.Windows.Forms; using System.Collections.Generic; -namespace LogDataGridView +namespace sps.brus07.LogDataGridView { public class SystemMessage : Message { Modified: smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/SystemMessageMode.cs =================================================================== --- smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/SystemMessageMode.cs 2009-01-16 19:36:58 UTC (rev 451) +++ smallprojects/sps/brus07/LogDataGridView/trunk/src/LogDataGridView/SystemMessageMode.cs 2009-01-16 19:54:44 UTC (rev 452) @@ -1,4 +1,4 @@ -namespace LogDataGridView +namespace sps.brus07.LogDataGridView { public enum SystemMessageMode { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |