gitignore and settings
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,4 +1,5 @@
|
||||
*.dll
|
||||
*.userprefs
|
||||
packages/
|
||||
bin/
|
||||
obj/
|
||||
|
||||
@@ -1,22 +1,14 @@
|
||||
<Properties>
|
||||
<MonoDevelop.Ide.Workspace ActiveConfiguration="Debug" />
|
||||
<MonoDevelop.Ide.Workbench ActiveDocument="src/NOCQ/Extensability/Catalog.cs">
|
||||
<MonoDevelop.Ide.Workbench ActiveDocument="src/NOCQ/Plugins/Email/ImapInput.cs">
|
||||
<Files>
|
||||
<File FileName="src/NOCQ/Plugins/Email/EmailSettings.cs" Line="13" Column="37" />
|
||||
<File FileName="src/NOCQ/Plugins/Email/ImapInput.cs" Line="60" Column="4" />
|
||||
<File FileName="src/NOCQ/Extensability/Catalog.cs" Line="8" Column="6" />
|
||||
<File FileName="src/NOCQ/Plugins/Email/EmailSettings.cs" Line="14" Column="44" />
|
||||
<File FileName="src/NOCQ/Plugins/Email/ImapInput.cs" Line="19" Column="7" />
|
||||
</Files>
|
||||
<Pads>
|
||||
<Pad Id="ProjectPad">
|
||||
<State expanded="True">
|
||||
<Node name="NOCQ" expanded="True">
|
||||
<Node name="Extensability" expanded="True">
|
||||
<Node name="Catalog.cs" selected="True" />
|
||||
</Node>
|
||||
<Node name="Plugins" expanded="True">
|
||||
<Node name="Email" expanded="True" />
|
||||
</Node>
|
||||
</Node>
|
||||
<Node name="NOCQ" expanded="True" selected="True" />
|
||||
<Node name="NOCQ.Application" expanded="True" />
|
||||
</State>
|
||||
</Pad>
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
using System;
|
||||
using System.Timers;
|
||||
using AE.Net.Mail;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace NOCQ.Plugins.Email
|
||||
{
|
||||
@@ -14,7 +15,7 @@ namespace NOCQ.Plugins.Email
|
||||
private int port { get; set; }
|
||||
private bool ssl { get; set; }
|
||||
private DateTime lastRun { get; set; }
|
||||
private IEnumerable<ParseRule> parseRules{ get; set; }
|
||||
private List<ParseRule> parseRules{ get; set; }
|
||||
|
||||
public ImapInput (dynamic settings)
|
||||
{
|
||||
|
||||
@@ -3,4 +3,4 @@
|
||||
<package id="AE.Net.Mail" version="1.7.9.1" targetFramework="net45" />
|
||||
<package id="csredis" version="1.4.7.1" targetFramework="net45" />
|
||||
<package id="Microsoft.Composition" version="1.0.27" targetFramework="net45" />
|
||||
</packages>
|
||||
</packages>
|
||||
Reference in New Issue
Block a user