Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth Skovhede <kenneth@hexad.dk>2016-01-29 12:47:39 +0300
committerKenneth Skovhede <kenneth@hexad.dk>2016-01-29 12:47:39 +0300
commit59cc0005a3f654ebdcedc689eeb486c7c1a00200 (patch)
treeb82f0f104a6d9bc61c93018206ab3b92fe2b3fa9 /Duplicati/Library/Backend/Mega
parent707ab752dbb3cc8fa0c96c14164cb6079c3b8c25 (diff)
Removed unused references and updated most libraries to come from NuGet sources instead of being provided in the thirdparty library
Diffstat (limited to 'Duplicati/Library/Backend/Mega')
-rw-r--r--Duplicati/Library/Backend/Mega/Duplicati.Library.Backend.Mega.csproj7
-rw-r--r--Duplicati/Library/Backend/Mega/packages.config5
2 files changed, 10 insertions, 2 deletions
diff --git a/Duplicati/Library/Backend/Mega/Duplicati.Library.Backend.Mega.csproj b/Duplicati/Library/Backend/Mega/Duplicati.Library.Backend.Mega.csproj
index 4cf978cd8..db317a7fe 100644
--- a/Duplicati/Library/Backend/Mega/Duplicati.Library.Backend.Mega.csproj
+++ b/Duplicati/Library/Backend/Mega/Duplicati.Library.Backend.Mega.csproj
@@ -34,10 +34,10 @@
<ItemGroup>
<Reference Include="System" />
<Reference Include="Newtonsoft.Json">
- <HintPath>..\..\..\..\thirdparty\Json.NET\Newtonsoft.Json.dll</HintPath>
+ <HintPath>..\..\..\..\packages\Newtonsoft.Json.8.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="MegaApiClient">
- <HintPath>..\..\..\..\thirdparty\MegaApi\MegaApiClient.dll</HintPath>
+ <HintPath>..\..\..\..\packages\MegaApiClient.1.1.3\lib\net40\MegaApiClient.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
@@ -60,4 +60,7 @@
<Name>Duplicati.Library.Utility</Name>
</ProjectReference>
</ItemGroup>
+ <ItemGroup>
+ <None Include="packages.config" />
+ </ItemGroup>
</Project> \ No newline at end of file
diff --git a/Duplicati/Library/Backend/Mega/packages.config b/Duplicati/Library/Backend/Mega/packages.config
new file mode 100644
index 000000000..0f3f0a037
--- /dev/null
+++ b/Duplicati/Library/Backend/Mega/packages.config
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="utf-8"?>
+<packages>
+ <package id="MegaApiClient" version="1.1.3" targetFramework="net45" />
+ <package id="Newtonsoft.Json" version="8.0.2" targetFramework="net45" />
+</packages> \ No newline at end of file