Skip to content

Commit 3a01187

Browse files
rev 18.7.0
1 parent 25fc6e6 commit 3a01187

File tree

5 files changed

+39
-18
lines changed

5 files changed

+39
-18
lines changed

.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
/src/packages
2+
/src/obj/Debug
3+
/src/bin/Debug
4+
/src/.vs
5+
/src/Aspose.Email-Cloud.csproj.user
Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ OpenAPI spec version: 1.1
1515
<OutputType>Library</OutputType>
1616
<AppDesignerFolder>Properties</AppDesignerFolder>
1717
<RootNamespace>Aspose.Email.Cloud.Sdk</RootNamespace>
18-
<AssemblyName>Aspose.Email.Cloud.Sdk</AssemblyName>
18+
<AssemblyName>Aspose.Email-Cloud</AssemblyName>
1919
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
2020
<FileAlignment>512</FileAlignment>
2121
</PropertyGroup>
@@ -37,8 +37,11 @@ OpenAPI spec version: 1.1
3737
<WarningLevel>4</WarningLevel>
3838
</PropertyGroup>
3939
<ItemGroup>
40-
<Reference Include="RestSharp">
41-
<HintPath>..\..\packages\RestSharp.105.1.0\lib\net45\RestSharp.dll</HintPath>
40+
<Reference Include="Newtonsoft.Json, Version=11.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
41+
<HintPath>packages\Newtonsoft.Json.11.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
42+
</Reference>
43+
<Reference Include="RestSharp, Version=105.1.0.0, Culture=neutral, processorArchitecture=MSIL">
44+
<HintPath>packages\RestSharp.105.1.0\lib\net45\RestSharp.dll</HintPath>
4245
</Reference>
4346
<Reference Include="System" />
4447
<Reference Include="System.Core" />
@@ -49,12 +52,6 @@ OpenAPI spec version: 1.1
4952
<Reference Include="System.Data" />
5053
<Reference Include="System.Runtime.Serialization" />
5154
<Reference Include="System.Xml" />
52-
<Reference Include="Newtonsoft.Json">
53-
<HintPath Condition="Exists('$(SolutionDir)\packages')">$(SolutionDir)\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
54-
<HintPath Condition="Exists('..\packages')">..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
55-
<HintPath Condition="Exists('..\..\packages')">..\..\packages\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
56-
<HintPath Condition="Exists('..\..\vendor')">..\..\vendor\Newtonsoft.Json.10.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
57-
</Reference>
5855
</ItemGroup>
5956
<ItemGroup>
6057
<Compile Include="Api\ApiException.cs" />

src/Aspose.Email-Cloud.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.27130.2003
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Aspose.Email-Cloud", "Aspose.Email-Cloud.csproj", "{87DC0C34-B5E3-47F7-A994-DA23A8685885}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|Any CPU = Debug|Any CPU
11+
Release|Any CPU = Release|Any CPU
12+
EndGlobalSection
13+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
14+
{87DC0C34-B5E3-47F7-A994-DA23A8685885}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
15+
{87DC0C34-B5E3-47F7-A994-DA23A8685885}.Debug|Any CPU.Build.0 = Debug|Any CPU
16+
{87DC0C34-B5E3-47F7-A994-DA23A8685885}.Release|Any CPU.ActiveCfg = Release|Any CPU
17+
{87DC0C34-B5E3-47F7-A994-DA23A8685885}.Release|Any CPU.Build.0 = Release|Any CPU
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ExtensibilityGlobals) = postSolution
23+
SolutionGuid = {3F7D2491-A443-4BB4-9485-C205452748A3}
24+
EndGlobalSection
25+
EndGlobal

src/Aspose.Email.Cloud.Sdk.csproj.user

Lines changed: 0 additions & 6 deletions
This file was deleted.

src/packages.config

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3+
<package id="Newtonsoft.Json" version="11.0.2" targetFramework="net45" developmentDependency="true" />
34
<package id="RestSharp" version="105.1.0" targetFramework="net45" developmentDependency="true" />
4-
<package id="Newtonsoft.Json" version="10.0.3" targetFramework="net45" developmentDependency="true" />
5-
</packages>
5+
</packages>

0 commit comments

Comments
 (0)