/src/NUnit/util/VSProjectConfig.cs
# · C# · 39 lines · 22 code · 6 blank · 11 comment · 0 complexity · 79f9c2f4d8a943f6f2f4db39bc78b0ac MD5 · raw file
- // ****************************************************************
- // Copyright 2002-2003, Charlie Poole
- // This is free software licensed under the NUnit license. You may
- // obtain a copy of the license at http://nunit.org
- // ****************************************************************
-
- using System;
- using System.Collections.Specialized;
-
- namespace NUnit.Util
- {
- /// <summary>
- /// Originally, we used the same ProjectConfig class for both
- /// NUnit and Visual Studio projects. Since we really do very
- /// little with VS Projects, this class has been created to
- /// hold the name and the collection of assembly paths.
- /// </summary>
- public class VSProjectConfig
- {
- private string name;
-
- private StringCollection assemblies = new StringCollection();
-
- public VSProjectConfig( string name )
- {
- this.name = name;
- }
-
- public string Name
- {
- get { return name; }
- }
-
- public StringCollection Assemblies
- {
- get { return assemblies; }
- }
- }
- }