mirror of
https://github.com/abdelkader/vCardEditor
synced 2025-12-12 08:27:19 +07:00
Removed the ref for the moq lib
This commit is contained in:
@@ -5,9 +5,14 @@ A Simple vcf file Editor.
|
|||||||
- You can export easily edit (modify, delete) entries of a vcf file with this simple tool.
|
- You can export easily edit (modify, delete) entries of a vcf file with this simple tool.
|
||||||
|
|
||||||
Thanks for Thought.vCards for his wonderful library of parsing and generating vcf format.
|
Thanks for Thought.vCards for his wonderful library of parsing and generating vcf format.
|
||||||
http://www.thoughtproject.com/Libraries/vCard/
|
https://github.com/drlongnecker/Thought.vCards
|
||||||
|
|
||||||
Also, the MVP pattern from this example :
|
Also, I used the MVP pattern from this example :
|
||||||
https://github.com/lennykean/NoteCards
|
https://github.com/lennykean/NoteCards
|
||||||
|
|
||||||
|
Relase note:
|
||||||
|
0.2 - Updated the vCard library to https://github.com/acastroy/Thought.vCards
|
||||||
|
- Replaced Moq with nsubstitute (Test mocking library).
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Binary file not shown.
@@ -5,7 +5,6 @@ using System.Linq;
|
|||||||
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
||||||
using VCFEditor;
|
using VCFEditor;
|
||||||
using VCFEditor.View;
|
using VCFEditor.View;
|
||||||
using Moq;
|
|
||||||
using VCFEditor.Presenter;
|
using VCFEditor.Presenter;
|
||||||
using VCFEditor.Model;
|
using VCFEditor.Model;
|
||||||
using System.ComponentModel;
|
using System.ComponentModel;
|
||||||
|
|||||||
@@ -42,9 +42,6 @@
|
|||||||
</Reference>
|
</Reference>
|
||||||
<Reference Include="Microsoft.CSharp" />
|
<Reference Include="Microsoft.CSharp" />
|
||||||
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
|
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL" />
|
||||||
<Reference Include="Moq">
|
|
||||||
<HintPath>Lib\Moq.dll</HintPath>
|
|
||||||
</Reference>
|
|
||||||
<Reference Include="NSubstitute, Version=3.1.0.0, Culture=neutral, PublicKeyToken=92dd2e9066daa5ca, processorArchitecture=MSIL">
|
<Reference Include="NSubstitute, Version=3.1.0.0, Culture=neutral, PublicKeyToken=92dd2e9066daa5ca, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\NSubstitute.3.1.0\lib\net45\NSubstitute.dll</HintPath>
|
<HintPath>..\packages\NSubstitute.3.1.0\lib\net45\NSubstitute.dll</HintPath>
|
||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
@@ -84,9 +81,7 @@
|
|||||||
<Name>vCardEditor</Name>
|
<Name>vCardEditor</Name>
|
||||||
</ProjectReference>
|
</ProjectReference>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup />
|
||||||
<Folder Include="Lib\" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<None Include="packages.config" />
|
<None Include="packages.config" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user