PageRenderTime 38ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

/src/NUnit/util/VSProjectConfig.cs

#
C# | 39 lines | 22 code | 6 blank | 11 comment | 0 complexity | 79f9c2f4d8a943f6f2f4db39bc78b0ac MD5 | raw file
Possible License(s): GPL-2.0
  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
  5. // ****************************************************************
  6. using System;
  7. using System.Collections.Specialized;
  8. namespace NUnit.Util
  9. {
  10. /// <summary>
  11. /// Originally, we used the same ProjectConfig class for both
  12. /// NUnit and Visual Studio projects. Since we really do very
  13. /// little with VS Projects, this class has been created to
  14. /// hold the name and the collection of assembly paths.
  15. /// </summary>
  16. public class VSProjectConfig
  17. {
  18. private string name;
  19. private StringCollection assemblies = new StringCollection();
  20. public VSProjectConfig( string name )
  21. {
  22. this.name = name;
  23. }
  24. public string Name
  25. {
  26. get { return name; }
  27. }
  28. public StringCollection Assemblies
  29. {
  30. get { return assemblies; }
  31. }
  32. }
  33. }