Skip to content

Commit 6d43197

Browse files
committed
Version 1.1.0
* Implement basic contact list API operations - community contribution thanks to https://github.com/lakesol
1 parent 17932f5 commit 6d43197

3 files changed

Lines changed: 10 additions & 3 deletions

File tree

HubSpot.NET.Examples/HubSpot.NET.Examples.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,4 +66,7 @@
6666
</ProjectReference>
6767
</ItemGroup>
6868
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
69+
<PropertyGroup>
70+
<PreBuildEvent>IF NOT EXIST "$(ProjectDir)app.config" ECHO ^&lt;^?xml version="1.0" encoding="utf-8"^?^&gt;^&lt;configuration^&gt;^&lt;^/configuration^&gt; &gt; "$(ProjectDir)app.config"</PreBuildEvent>
71+
</PropertyGroup>
6972
</Project>

HubSpot.NET/Api/ContactList/HubSpotContactListApi.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.Collections.Generic;
2-
using Flurl;
32
using HubSpot.NET.Api.ContactList.Dto;
3+
using HubSpot.NET.Core.Extensions;
44
using HubSpot.NET.Core.Interfaces;
55
using RestSharp;
66

HubSpot.NET/HubSpot.NET.csproj

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project Sdk="Microsoft.NET.Sdk">
33
<PropertyGroup>
4-
<TargetFrameworks>net452;net451;net452;netstandard2.0</TargetFrameworks>
4+
<TargetFrameworks>net452;net451;netstandard2.0</TargetFrameworks>
55
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
6-
<Version>1.0.0.2</Version>
6+
<Version>1.1.0</Version>
77
<Authors>Chinchilla Software Limited</Authors>
88
<Company>Chinchilla Software Limited</Company>
99
<Description>C# .NET Wrapper around the common HubSpot APIs.</Description>
@@ -15,6 +15,10 @@
1515
<RepositoryUrl>https://github.com/Chinchilla-Software-Com/HubSpot.NET</RepositoryUrl>
1616
<PackageTags>hubspot api wrapper c# contact company deal engagement properties crm</PackageTags>
1717
<PackageReleaseNotes>
18+
Version 1.1.0
19+
20+
* Implement basic contact list API operations - community contribution thanks to https://github.com/lakesol
21+
1822
Version 1.0.0.2
1923

2024
* Upgraded RestSharp to 106.15.0 to address a security issue.

0 commit comments

Comments
 (0)