
12 changed files with 21917 additions and 37 deletions
-
5.gitignore
-
12ICSharpCode.TextEditor.sln
-
36Project/Configuration/GlobalAssemblyInfo.cs
-
62Project/ICSharpCode.TextEditor.csproj
-
32Test/ICSharpCode.TextEditor.Tests.csproj
-
10892Test/bin/UnitTests/nunit.framework.xml
-
4Test/packages.config
-
BINpackages/NUnit.2.6.1/NUnit.2.6.1.nupkg
-
BINpackages/NUnit.2.6.1/lib/nunit.framework.dll
-
10892packages/NUnit.2.6.1/lib/nunit.framework.xml
-
15packages/NUnit.2.6.1/license.txt
-
4packages/repositories.config
@ -1 +1,6 @@ |
|||
*.user |
|||
*.suo |
|||
_ReSharper.*/ |
|||
bin/ |
|||
obj/ |
|||
TestResults/ |
@ -0,0 +1,36 @@ |
|||
// <file>
|
|||
// <copyright see="prj:///doc/copyright.txt"/>
|
|||
// <license see="prj:///doc/license.txt"/>
|
|||
// <owner name="Daniel Grunwald" email="daniel@danielgrunwald.de"/>
|
|||
// <version>$Revision: 1040 $</version>
|
|||
// </file>
|
|||
|
|||
/////////////////////////////////////////////////////////////////////////////////////////////
|
|||
/////////////////////////////////////////////////////////////////////////////////////////////
|
|||
// //
|
|||
// DO NOT EDIT GlobalAssemblyInfo.cs, it is recreated using AssemblyInfo.template whenever //
|
|||
// StartUp is compiled. //
|
|||
// //
|
|||
/////////////////////////////////////////////////////////////////////////////////////////////
|
|||
/////////////////////////////////////////////////////////////////////////////////////////////
|
|||
|
|||
using System.Resources; |
|||
using System.Reflection; |
|||
|
|||
[assembly: System.Runtime.InteropServices.ComVisible(false)] |
|||
[assembly: AssemblyCompany("ic#code")] |
|||
[assembly: AssemblyProduct("SharpDevelop")] |
|||
[assembly: AssemblyCopyright("2000-2010 AlphaSierraPapa")] |
|||
[assembly: AssemblyVersion(RevisionClass.FullVersion)] |
|||
[assembly: NeutralResourcesLanguage("en-US")] |
|||
|
|||
internal static class RevisionClass |
|||
{ |
|||
public const string Major = "3"; |
|||
public const string Minor = "2"; |
|||
public const string Build = "2"; |
|||
public const string Revision = "6466"; |
|||
|
|||
public const string MainVersion = Major + "." + Minor; |
|||
public const string FullVersion = Major + "." + Minor + "." + Build + "." + Revision; |
|||
} |
10892
Test/bin/UnitTests/nunit.framework.xml
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,4 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<packages> |
|||
<package id="NUnit" version="2.6.1" targetFramework="net20" /> |
|||
</packages> |
10892
packages/NUnit.2.6.1/lib/nunit.framework.xml
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,15 @@ |
|||
Copyright © 2002-2012 Charlie Poole |
|||
Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov |
|||
Copyright © 2000-2002 Philip A. Craig |
|||
|
|||
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software. |
|||
|
|||
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions: |
|||
|
|||
1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment (see the following) in the product documentation is required. |
|||
|
|||
Portions Copyright © 2002-2012 Charlie Poole or Copyright © 2002-2004 James W. Newkirk, Michael C. Two, Alexei A. Vorontsov or Copyright © 2000-2002 Philip A. Craig |
|||
|
|||
2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software. |
|||
|
|||
3. This notice may not be removed or altered from any source distribution. |
@ -0,0 +1,4 @@ |
|||
<?xml version="1.0" encoding="utf-8"?> |
|||
<repositories> |
|||
<repository path="..\Test\packages.config" /> |
|||
</repositories> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue