retag
[mcs.git] / nunit24 / ClientUtilities / util / VSProjectConfig.cs
blob757701577450989bdca21d26b3fb0a3950814f2f
1 // ****************************************************************
2 // Copyright 2002-2003, Charlie Poole
3 // This is free software licensed under the NUnit license. You may
4 // obtain a copy of the license at http://nunit.org/?p=license&r=2.4
5 // ****************************************************************
7 using System;
8 using System.Collections.Specialized;
10 namespace NUnit.Util
12 /// <summary>
13 /// Originally, we used the same ProjectConfig class for both
14 /// NUnit and Visual Studio projects. Since we really do very
15 /// little with VS Projects, this class has been created to
16 /// hold the name and the collection of assembly paths.
17 /// </summary>
18 public class VSProjectConfig
20 private string name;
22 private StringCollection assemblies = new StringCollection();
24 public VSProjectConfig( string name )
26 this.name = name;
29 public string Name
31 get { return name; }
34 public StringCollection Assemblies
36 get { return assemblies; }