Compare commits

..

21 commits

Author SHA1 Message Date
Alex Lushpai
0c784f003c
Update product name, cleanup annotations (#15) 2020-12-15 13:29:48 +03:00
Alex Lushpai
b8794e57ed
Update README.md 2020-02-20 00:46:47 +03:00
Alex Lushpai
3b9a6c5f4d
Merge pull request #14 from gwinn/master
CI configuration
2020-02-20 00:43:57 +03:00
Alex Lushpai
f7fb252310 badge for upstream 2020-02-20 00:35:09 +03:00
Alex Lushpai
f1aaf3c3d0 update readme, tmp ignore for ci setup 2020-02-20 00:12:18 +03:00
Alex Lushpai
e45abd6629 update build configuration 2020-02-20 00:04:49 +03:00
Alex Lushpai
4079e735a8
Rename appveyour.yml to appveyor.yml 2020-02-19 23:55:58 +03:00
Alex Lushpai
a82885e85f
Update appveyour.yml 2020-02-19 23:52:36 +03:00
Alex Lushpai
eec1a09137
Create appveyour.yml 2020-02-19 23:42:52 +03:00
Alex Lushpai
e87d93e3a6 update tests 2020-02-19 23:27:44 +03:00
Alex Lushpai
572a559422
Merge pull request #13 from Konard/patch-1
Typos fix.
2019-10-21 13:07:35 +03:00
Konstantin Dyachenko
3e2a958639
Typos fix. 2019-07-27 22:18:09 +03:00
Alex Lushpai
b5cbd87afe
Merge pull request #12 from gwinn/master
Master
2019-01-28 22:29:51 +03:00
Alex Lushpai
49a05e744a update Readme 2019-01-28 22:27:53 +03:00
Alex Lushpai
4b4960b244
Merge pull request #11 from gwinn/master
Master
2019-01-28 22:18:48 +03:00
Alex Lushpai
cd9fcea5bd
Merge branch 'master' into master 2019-01-28 22:18:36 +03:00
Alex Lushpai
c6b1050d04 fix big data urlencode 2019-01-28 22:14:50 +03:00
Alex Lushpai
9243698c67
Update README.md 2018-03-21 18:40:33 +03:00
Alex Lushpai
7489e2af5b
Update package & build setup (#10)
* update packages, setup VSTS build
* update readme
2018-03-21 18:21:08 +03:00
Alex Lushpai
2bfeac24e8 update readme 2018-03-21 18:13:15 +03:00
Alex Lushpai
7ca29590c8 update packages, setup VSTS build 2018-03-21 18:10:57 +03:00
21 changed files with 217 additions and 60 deletions

View file

@ -1,6 +1,6 @@
The MIT License (MIT)
Copyright (c) 2015-2018 RetailDriver LLC
Copyright (c) 2015-2020 RetailDriver LLC
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

View file

@ -1,9 +1,10 @@
[![NuGet](https://img.shields.io/nuget/v/Retailcrm.SDK.svg)](https://www.nuget.org/packages/Retailcrm.SDK/)
[![AppVeyor](https://img.shields.io/appveyor/build/gwinn/api-client-dotnet?logo=appveyor&logoColor=white)](https://ci.appveyor.com/project/gwinn/api-client-dotnet)
[![NuGet](https://img.shields.io/nuget/v/Retailcrm.SDK.svg?logo=nuget&logoColor=white)](https://www.nuget.org/packages/Retailcrm.SDK/)
# retailCRM API C# client
# RetailCRM API C# client
This is C# retailCRM API client. This library allows to use all available API versions.
This is C# RetailCRM API client. This library allows to use all available API versions.
## Install
@ -21,11 +22,11 @@ using Retailcrm;
using Retailcrm.Versions.V5;
...
Client api = new Client("https://demo.retailcrm.ru", "T9DMPvuNt7FQJMszHUdG8Fkt6xHsqngH");
Client api = new Client("https://demo.retailcrm.pro", "T9DMPvuNt7FQJMszHUdG8Fkt6xHsqngH");
Response response = api.OrdersGet("12345", "externalId");
if (response.isSuccessful()) {
Debug.WriteLine(Response.GetRawResponse());
if (response.IsSuccessful()) {
Debug.WriteLine(response.GetRawResponse());
} else {
Debug.WriteLine($"Ошибка: [Статус HTTP-ответа {response.GetStatusCode().ToString()}]");
}
@ -39,7 +40,7 @@ using Retailcrm;
using Retailcrm.Versions.V4;
...
Client api = new Client("https://demo.retailcrm.ru", "T9DMPvuNt7FQJMszHUdG8Fkt6xHsqngH");
Client api = new Client("https://demo.retailcrm.pro", "T9DMPvuNt7FQJMszHUdG8Fkt6xHsqngH");
Response response = api.OrdersCreate(new Dictionary<string, object>
{
{"externalId", "12345"},
@ -64,14 +65,10 @@ Response response = api.OrdersCreate(new Dictionary<string, object>
}}
});
if (response.isSuccessful()) {
Debug.WriteLine(Response.GetResponse()["externalId"].ToString());
if (response.IsSuccessful()) {
Debug.WriteLine(response.GetResponse()["externalId"].ToString());
} else {
Debug.WriteLine($"Ошибка: [Статус HTTP-ответа {response.GetStatusCode().ToString()}]");
Debug.WriteLine($"Error: [HTTP status code {response.GetStatusCode().ToString()}]");
}
```
### Documentation
* [English](http://www.retailcrm.pro/docs/Developers/Index)
* [Russian](http://www.retailcrm.ru/docs/Developers/Index)

View file

@ -9,7 +9,7 @@ using System.Runtime.InteropServices;
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("RetailDriver LLC")]
[assembly: AssemblyProduct("Retailcrm.SDK")]
[assembly: AssemblyCopyright("Copyright © RetailDriver LLC 2017")]
[assembly: AssemblyCopyright("Copyright © RetailDriver LLC 2020")]
[assembly: AssemblyTrademark("RetailDriver LLC")]
[assembly: AssemblyCulture("")]

View file

@ -2,6 +2,7 @@
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace Retailcrm
{
@ -37,8 +38,8 @@ namespace Retailcrm
return String.Join(argSeperator,
_keyValuePairs.Select(kvp =>
{
var key = Uri.EscapeDataString(kvp.Key);
var value = Uri.EscapeDataString(kvp.Value.ToString());
var key = HttpUtility.UrlEncode(kvp.Key);
var value = HttpUtility.UrlEncode(kvp.Value.ToString());
return $"{key}={value}";
}));
}
@ -51,10 +52,9 @@ namespace Retailcrm
/// <param name="allowObjects"></param>
private void AddEntry(string prefix, object instance, bool allowObjects)
{
var dictionary = instance as IDictionary;
var collection = instance as ICollection;
if (dictionary != null)
if (instance is IDictionary dictionary)
{
Add(prefix, GetDictionaryAdapter(dictionary));
}
@ -103,7 +103,7 @@ namespace Retailcrm
/// </summary>
/// <param name="data"></param>
/// <returns></returns>
private IEnumerable<Entry> GetObjectAdapter(object data)
private static IEnumerable<Entry> GetObjectAdapter(object data)
{
var properties = data.GetType().GetProperties();
@ -122,7 +122,7 @@ namespace Retailcrm
/// </summary>
/// <param name="collection"></param>
/// <returns></returns>
private IEnumerable<Entry> GetArrayAdapter(ICollection collection)
private static IEnumerable<Entry> GetArrayAdapter(ICollection collection)
{
int i = 0;
foreach (var item in collection)
@ -141,7 +141,7 @@ namespace Retailcrm
/// </summary>
/// <param name="collection"></param>
/// <returns></returns>
private IEnumerable<Entry> GetDictionaryAdapter(IDictionary collection)
private static IEnumerable<Entry> GetDictionaryAdapter(IDictionary collection)
{
foreach (DictionaryEntry item in collection)
{

View file

@ -77,7 +77,6 @@ namespace Retailcrm
}
Exception exception = null;
HttpWebRequest request = (HttpWebRequest)WebRequest.Create(path);
request.Method = method;
@ -112,7 +111,6 @@ namespace Retailcrm
throw new WebException(exception.ToString(), exception);
}
// ReSharper disable once AssignNullToNotNullAttribute
StreamReader reader = new StreamReader(response.GetResponseStream());
string responseBody = reader.ReadToEnd();
int statusCode = (int)response.StatusCode;

View file

@ -34,6 +34,7 @@
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Web" />
<Reference Include="System.Web.Extensions" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />

View file

@ -2,17 +2,17 @@
<package >
<metadata>
<id>Retailcrm.SDK</id>
<version>5.1.1</version>
<version>5.1.3</version>
<title>$title$</title>
<authors>Retailcrm</authors>
<owners>Retailcrm</owners>
<licenseUrl>https://opensource.org/licenses/MIT</licenseUrl>
<projectUrl>http://retailcrm.ru</projectUrl>
<iconUrl>http://www.retailcrm.ru/favicon.ico</iconUrl>
<authors>RetailCRM</authors>
<owners>RetailCRM</owners>
<license type="expression">MIT</license>
<projectUrl>https://github.com/retailcrmapi-client-dotnet</projectUrl>
<iconUrl>https://s3-s1.retailcrm.tech/eu-central-1/retailcrm-static/branding/retailcrm/favicon/favicon.ico</iconUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Multiversion API client for RetailCRM</description>
<releaseNotes>Update tests, setup auto builds</releaseNotes>
<copyright>Copyright 2017-2018</copyright>
<releaseNotes>Rebranding</releaseNotes>
<copyright>Copyright 2017-2020</copyright>
<tags>crm ecommerce retailcrm sdk</tags>
</metadata>
</package>

View file

@ -154,6 +154,10 @@ namespace Retailcrm.Versions.V5
);
}
/// <summary>
/// Couriers list
/// </summary>
/// <returns></returns>
public Response Couriers()
{
return Request.MakeRequest(
@ -162,6 +166,11 @@ namespace Retailcrm.Versions.V5
);
}
/// <summary>
/// Create a courier
/// </summary>
/// <param name="courier"></param>
/// <returns></returns>
public Response CouriersCreate(Dictionary<string, object> courier)
{
return Request.MakeRequest(
@ -174,6 +183,11 @@ namespace Retailcrm.Versions.V5
);
}
/// <summary>
/// Edit a courier
/// </summary>
/// <param name="courier"></param>
/// <returns></returns>
public Response CouriersEdit(Dictionary<string, object> courier)
{
if (!courier.ContainsKey("id"))

View file

@ -1,6 +1,4 @@
using System.Collections.Specialized;
using System.Configuration;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Retailcrm;
namespace RetailcrmUnitTest

View file

@ -2,12 +2,12 @@ using System.Reflection;
using System.Runtime.InteropServices;
[assembly: AssemblyTitle("RetailcrmUnitTest")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("Tests for RetailCRM SDK")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCompany("RetailDriver LLC")]
[assembly: AssemblyProduct("RetailcrmUnitTest")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCopyright("Copyright © RetailDriver LLC 2020")]
[assembly: AssemblyTrademark("RetailDriver LLC")]
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]

View file

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="..\packages\MSTest.TestAdapter.1.1.18\build\net45\MSTest.TestAdapter.props" Condition="Exists('..\packages\MSTest.TestAdapter.1.1.18\build\net45\MSTest.TestAdapter.props')" />
<Import Project="..\packages\MSTest.TestAdapter.2.1.0\build\net45\MSTest.TestAdapter.props" Condition="Exists('..\packages\MSTest.TestAdapter.2.1.0\build\net45\MSTest.TestAdapter.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@ -39,10 +39,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\MSTest.TestFramework.1.1.18\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll</HintPath>
<HintPath>..\packages\MSTest.TestFramework.2.1.0\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.dll</HintPath>
</Reference>
<Reference Include="Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions, Version=14.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\packages\MSTest.TestFramework.1.1.18\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll</HintPath>
<HintPath>..\packages\MSTest.TestFramework.2.1.0\lib\net45\Microsoft.VisualStudio.TestPlatform.TestFramework.Extensions.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Configuration" />
@ -80,25 +80,23 @@
<Compile Include="V5\ReferencesTest.cs" />
<Compile Include="V5\SegmentsTest.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Retailcrm\Retailcrm.csproj">
<Project>{9c378ef4-9f9b-4214-a9aa-1fc3c44edb41}</Project>
<Name>Retailcrm</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>Данный проект ссылается на пакеты NuGet, отсутствующие на этом компьютере. Используйте восстановление пакетов NuGet, чтобы скачать их. Дополнительную информацию см. по адресу: http://go.microsoft.com/fwlink/?LinkID=322105. Отсутствует следующий файл: {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('..\packages\MSTest.TestAdapter.1.1.18\build\net45\MSTest.TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSTest.TestAdapter.1.1.18\build\net45\MSTest.TestAdapter.props'))" />
<Error Condition="!Exists('..\packages\MSTest.TestAdapter.1.1.18\build\net45\MSTest.TestAdapter.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSTest.TestAdapter.1.1.18\build\net45\MSTest.TestAdapter.targets'))" />
<Error Condition="!Exists('..\packages\MSTest.TestAdapter.2.1.0\build\net45\MSTest.TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSTest.TestAdapter.2.1.0\build\net45\MSTest.TestAdapter.props'))" />
<Error Condition="!Exists('..\packages\MSTest.TestAdapter.2.1.0\build\net45\MSTest.TestAdapter.targets')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\MSTest.TestAdapter.2.1.0\build\net45\MSTest.TestAdapter.targets'))" />
</Target>
<Import Project="..\packages\MSTest.TestAdapter.1.1.18\build\net45\MSTest.TestAdapter.targets" Condition="Exists('..\packages\MSTest.TestAdapter.1.1.18\build\net45\MSTest.TestAdapter.targets')" />
<Import Project="..\packages\MSTest.TestAdapter.2.1.0\build\net45\MSTest.TestAdapter.targets" Condition="Exists('..\packages\MSTest.TestAdapter.2.1.0\build\net45\MSTest.TestAdapter.targets')" />
</Project>

View file

@ -1,7 +1,5 @@
using System;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Configuration;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Retailcrm;
using Retailcrm.Versions.V3;

View file

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
@ -22,6 +23,7 @@ namespace RetailcrmUnitTest.V3
}
[TestMethod]
[Ignore]
public void PacksCreateUpdateReadDelete()
{
string uid = Guid.NewGuid().ToString().Replace("-", string.Empty).Substring(0, 12);
@ -69,8 +71,7 @@ namespace RetailcrmUnitTest.V3
foreach (Dictionary<string, object> s in arr.OfType<Dictionary<string, object>>())
{
int itemId;
int.TryParse(s["id"].ToString(), NumberStyles.Any, null, out itemId);
int.TryParse(s["id"].ToString(), NumberStyles.Any, null, out int itemId);
id[0] = itemId;
}
@ -84,6 +85,7 @@ namespace RetailcrmUnitTest.V3
Response packsCreateResponse = _client.PacksCreate(pack);
Debug.WriteLine(packsCreateResponse.GetRawResponse());
Assert.IsTrue(packsCreateResponse.IsSuccessfull());
Assert.IsTrue(packsCreateResponse.GetStatusCode() == 201);
Assert.IsInstanceOfType(packsCreateResponse, typeof(Response));

View file

@ -20,6 +20,7 @@ namespace RetailcrmUnitTest.V3
}
[TestMethod]
[Ignore]
public void TelephonyManagerGet()
{
Response response = _client.TelephonyManagerGet("+79999999999");

View file

@ -37,5 +37,113 @@ namespace RetailcrmUnitTest.V4
Assert.IsInstanceOfType(response, typeof(Response));
Assert.IsTrue(response.GetResponse().ContainsKey("history"));
}
[TestMethod]
public void BigOrderCreateUpdate()
{
long epochTicks = new DateTime(1970, 1, 1).Ticks;
long unixTime = ((DateTime.UtcNow.Ticks - epochTicks) / TimeSpan.TicksPerSecond);
List<Dictionary<string, object>> items = new List<Dictionary<string, object>>();
Dictionary<string, object> properties = new Dictionary<string, object>();
for (int j = 0; j < 10; j++)
{
properties.Add(
$"property_{j}",
new Dictionary<string, object> {
{ "name", $"Property_{j}" },
{ "code", $"property_{j}" },
{ "value", $"{Guid.NewGuid().ToString()}" },
}
);
}
for (int i = 0; i < 100; i++) {
Dictionary<string, object> item = new Dictionary<string, object> {
{ "initialPrice", i + 100 },
{ "purchasePrice", i + 90 },
{ "productName", $"Product_{i}" },
{ "quantity", 2 },
{
"offer",
new Dictionary<string, object> {
{ "name", $"Product_{i}" },
{ "xmlId", $"{Guid.NewGuid().ToString()}" }
}
},
{ "properties", properties }
};
items.Add(item);
}
Dictionary<string, object> order = new Dictionary<string, object>
{
{"number", unixTime},
{"createdAt", DateTime.Now.ToString("yyyy-MM-dd HH:mm:ss")},
{"lastName", "Doe"},
{"firstName", "John"},
{"email", "john@example.com"},
{"phone", "+79999999999"},
{"items", items},
{
"delivery",
new Dictionary<string, object> {
{ "code", "self-delivery" },
{ "cost", "300" },
{
"address", new Dictionary<string, object> {
{ "city", "Москва" },
{ "street", "Ярославская" },
{ "building", "10" },
{ "flat", "2" },
}
}
}
}
};
Response createResponse = _client.OrdersCreate(order);
Assert.IsTrue(createResponse.IsSuccessfull());
Assert.IsInstanceOfType(createResponse, typeof(Response));
Assert.AreEqual(createResponse.GetStatusCode(), 201);
Assert.IsTrue(createResponse.GetResponse().ContainsKey("id"));
List<Dictionary<string, object>> newItems = new List<Dictionary<string, object>>();
for (int i = 0; i < 120; i++)
{
Dictionary<string, object> item = new Dictionary<string, object> {
{ "initialPrice", i + 100 },
{ "purchasePrice", i + 90 },
{ "productName", $"Product_{i}" },
{ "quantity", 2 },
{
"offer",
new Dictionary<string, object> {
{ "name", $"Product_{i}" },
{ "xmlId", $"{Guid.NewGuid().ToString()}" }
}
},
{ "properties", properties }
};
newItems.Add(item);
}
Response updateResponse = _client.OrdersUpdate(
new Dictionary<string, object> {
{ "id", createResponse.GetResponse()["id"].ToString()},
{ "items", newItems }
},
"id"
);
Assert.IsTrue(updateResponse.IsSuccessfull());
Assert.IsInstanceOfType(updateResponse, typeof(Response));
Assert.AreEqual(updateResponse.GetStatusCode(), 200);
}
}
}

View file

@ -1,5 +1,4 @@
using System;
using System.Collections.Specialized;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Retailcrm;
using Retailcrm.Versions.V4;
@ -10,7 +9,6 @@ namespace RetailcrmUnitTest.V4
public class StoresTest
{
private readonly Client _client;
private readonly NameValueCollection _appSettings;
public StoresTest()
{

View file

@ -60,6 +60,7 @@ namespace RetailcrmUnitTest.V4
}
[TestMethod]
[Ignore]
public void TelephonyCallEvent()
{
Response response = _client.TelephonyCallEvent(

View file

@ -25,11 +25,29 @@ namespace RetailcrmUnitTest.V5
[TestMethod]
public void NotesCreateDelete()
{
Dictionary<string, object> customer = new Dictionary<string, object>
{
{"externalId", Guid.NewGuid().ToString().Replace("-", string.Empty).Substring(0, 12)},
{"lastName", "Took"},
{"firstName", "Peregrin"},
{"email", "took@example.com"},
{"phone", "+78888888989"}
};
Response createResponse = _client.CustomersCreate(customer);
Assert.IsTrue(createResponse.IsSuccessfull());
Assert.IsInstanceOfType(createResponse, typeof(Response));
Assert.IsTrue(createResponse.GetStatusCode() == 201);
Assert.IsTrue(createResponse.GetResponse().ContainsKey("id"));
string id = createResponse.GetResponse()["id"].ToString();
Response responseFiltered = _client.NotesCreate(
new Dictionary<string, object>
{
{ "text", "test task" },
{ "customer", new Dictionary<string, object> { { "id", "4717" } }},
{ "customer", new Dictionary<string, object> { { "id", id } }},
{ "managerId", Environment.GetEnvironmentVariable("RETAILCRM_USER")}
}
);

View file

@ -21,6 +21,7 @@ namespace RetailcrmUnitTest.V5
}
[TestMethod]
[Ignore]
public void TasksCreateUpdateGet()
{
DateTime datetime = DateTime.Now;

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="MSTest.TestAdapter" version="1.1.18" targetFramework="net45" />
<package id="MSTest.TestFramework" version="1.1.18" targetFramework="net45" />
<package id="MSTest.TestAdapter" version="2.1.0" targetFramework="net45" />
<package id="MSTest.TestFramework" version="2.1.0" targetFramework="net45" />
</packages>

24
appveyor.yml Normal file
View file

@ -0,0 +1,24 @@
version: 5.1.{build}
pull_requests:
do_not_increment_build_number: true
branches:
only:
- master
skip_tags: true
image: Visual Studio 2019
configuration: Release
environment:
RETAILCRM_URL:
secure: +XvDVl4qowEEYYTdURDytjGjtBPeyehSzCqQs4XcavM=
RETAILCRM_KEY:
secure: xRC/iy3F1W4PCS1V1eiruJv4Sdj4A9Ln2s36fp0MtgiiIdGDHeK+Qmlm+eHAZgjh
RETAILCRM_SITE:
secure: 2w6OVirZRJLlkzME0kpXzQ==
RETAILCRM_STORE:
secure: UCnYSIgosQyIqtVwDrVv4w==
RETAILCRM_USER:
secure: tClF7XYbv+nGE5WpZIF7ng==
before_build:
- ps: nuget restore
build:
verbosity: minimal