mirror of
https://github.com/greenshot/greenshot
synced 2025-08-21 14:03:23 -07:00
Refactoring the interop code to a separate project. Still need to add the interop DLL to the final exe... or maybe I want to use references inside the projects...
git-svn-id: http://svn.code.sf.net/p/greenshot/code/trunk@1689 7dccd23d-a4a3-4e1f-8c07-b4c1b4018ab4
This commit is contained in:
parent
7666127106
commit
0aa8e43478
14 changed files with 18 additions and 585 deletions
|
@ -20,7 +20,7 @@
|
|||
*/
|
||||
using System;
|
||||
|
||||
namespace IniFile {
|
||||
namespace Greenshot.IniFile {
|
||||
/// <summary>
|
||||
/// Attribute for telling that this class is linked to a section in the ini-configuration
|
||||
/// </summary>
|
||||
|
|
|
@ -26,7 +26,7 @@ using System.Reflection;
|
|||
using System.Text;
|
||||
using System.Threading;
|
||||
|
||||
namespace IniFile {
|
||||
namespace Greenshot.IniFile {
|
||||
public class IniConfig {
|
||||
private static log4net.ILog LOG = log4net.LogManager.GetLogger(typeof(IniConfig));
|
||||
private const string INI_EXTENSION = ".ini";
|
||||
|
|
|
@ -23,7 +23,7 @@ using System.Collections.Generic;
|
|||
using System.IO;
|
||||
using System.Text;
|
||||
|
||||
namespace IniFile {
|
||||
namespace Greenshot.IniFile {
|
||||
public static class IniReader {
|
||||
private const string SECTION_START = "[";
|
||||
private const string SECTION_END = "]";
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace IniFile {
|
||||
namespace Greenshot.IniFile {
|
||||
/// <summary>
|
||||
/// Base class for all IniSections
|
||||
/// </summary>
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
using System;
|
||||
using System.Reflection;
|
||||
|
||||
namespace IniFile {
|
||||
namespace Greenshot.IniFile {
|
||||
/// <summary>
|
||||
/// A container to be able to pass the value from a IniSection around.
|
||||
/// </summary>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue