Skip to content

Commit 4a3cb22

Browse files
authored
Merge pull request #50 from stackify/fix/49
fix #49 - StackifyLib.Utils.HttpClient must be public
2 parents a54f2ea + 58b7567 commit 4a3cb22

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

Src/NLog.Targets.Stackify/NLog.Targets.Stackify.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<Version>2.0.0</Version>
1919
<PackageLicenseUrl>https://github.com/stackify/stackify-api-dotnet/blob/master/LICENSE</PackageLicenseUrl>
2020
<PackageProjectUrl>https://github.com/stackify/stackify-api-dotnet</PackageProjectUrl>
21-
<PackageIconUrl>https://stackify.com/wp-content/uploads/2016/08/cropped-Green-Favicon-192x192.png</PackageIconUrl>
21+
<PackageIconUrl>https://stackify.com/wp-content/uploads/2017/02/stk.png</PackageIconUrl>
2222
<RepositoryUrl>https://github.com/stackify/stackify-api-dotnet</RepositoryUrl>
2323
<RepositoryType>git</RepositoryType>
2424
</PropertyGroup>

Src/StackifyLib.AspNetCore/StackifyLib.AspNetCore.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<PackageProjectUrl>https://github.com/stackify/stackify-api-dotnet</PackageProjectUrl>
1919
<RepositoryUrl>https://github.com/stackify/stackify-api-dotnet</RepositoryUrl>
2020
<RepositoryType>git</RepositoryType>
21-
<PackageIconUrl>https://stackify.com/wp-content/uploads/2016/08/cropped-Green-Favicon-192x192.png</PackageIconUrl>
21+
<PackageIconUrl>https://stackify.com/wp-content/uploads/2017/02/stk.png</PackageIconUrl>
2222
</PropertyGroup>
2323

2424
<ItemGroup>

Src/StackifyLib.CoreLogger/StackifyLib.CoreLogger.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<PackageProjectUrl>https://github.com/stackify/stackify-api-dotnet</PackageProjectUrl>
1717
<RepositoryUrl>https://github.com/stackify/stackify-api-dotnet</RepositoryUrl>
1818
<RepositoryType>git</RepositoryType>
19-
<PackageIconUrl>https://stackify.com/wp-content/uploads/2016/08/cropped-Green-Favicon-192x192.png</PackageIconUrl>
19+
<PackageIconUrl>https://stackify.com/wp-content/uploads/2017/02/stk.png</PackageIconUrl>
2020
<Description>StackifyLib.CoreLogger</Description>
2121
<Version>2.0.1</Version>
2222
</PropertyGroup>

Src/StackifyLib.StackifyTraceListener/StackifyLib.StackifyTraceListener.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<PackageProjectUrl>https://github.com/stackify/stackify-api-dotnet</PackageProjectUrl>
1616
<RepositoryUrl>https://github.com/stackify/stackify-api-dotnet</RepositoryUrl>
1717
<RepositoryType>git</RepositoryType>
18-
<PackageIconUrl>https://stackify.com/wp-content/uploads/2016/08/cropped-Green-Favicon-192x192.png</PackageIconUrl>
18+
<PackageIconUrl>https://stackify.com/wp-content/uploads/2017/02/stk.png</PackageIconUrl>
1919
</PropertyGroup>
2020

2121
<ItemGroup>

Src/StackifyLib.log4net/StackifyLib.log4net.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<PackageProjectUrl>https://github.com/stackify/stackify-api-dotnet</PackageProjectUrl>
1919
<RepositoryUrl>https://github.com/stackify/stackify-api-dotnet</RepositoryUrl>
2020
<RepositoryType>git</RepositoryType>
21-
<PackageIconUrl>https://stackify.com/wp-content/uploads/2016/08/cropped-Green-Favicon-192x192.png</PackageIconUrl>
21+
<PackageIconUrl>https://stackify.com/wp-content/uploads/2017/02/stk.png</PackageIconUrl>
2222
</PropertyGroup>
2323

2424
<ItemGroup>

Src/StackifyLib/StackifyLib.csproj

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,15 @@
1414
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
1515
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
1616
<GenerateAssemblyCopyrightAttribute>false</GenerateAssemblyCopyrightAttribute>
17-
<Version>2.0.0</Version>
17+
<Version>2.0.1</Version>
1818
<Authors>StackifyLib</Authors>
1919
<PackageProjectUrl>https://github.com/stackify/stackify-api-dotnet</PackageProjectUrl>
2020
<PackageLicenseUrl>https://github.com/stackify/stackify-api-dotnet/blob/master/LICENSE</PackageLicenseUrl>
2121
<RepositoryUrl>https://github.com/stackify/stackify-api-dotnet</RepositoryUrl>
2222
<RepositoryType>git</RepositoryType>
23-
<PackageIconUrl>https://stackify.com/wp-content/uploads/2016/08/cropped-Green-Favicon-192x192.png</PackageIconUrl>
23+
<PackageIconUrl>https://stackify.com/wp-content/uploads/2017/02/stk.png</PackageIconUrl>
24+
<AssemblyVersion>2.0.1.0</AssemblyVersion>
25+
<FileVersion>2.0.1.0</FileVersion>
2426
</PropertyGroup>
2527

2628

Src/StackifyLib/Utils/HttpClient.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public class AppIdentityInfo
2626
public string DeviceAlias { get; set; }
2727
}
2828

29-
internal class HttpClient
29+
public class HttpClient
3030
{
3131
public static IWebProxy CustomWebProxy = null;
3232

@@ -685,7 +685,7 @@ private HttpWebRequest BuildPOSTRequest(string url, string postdata)
685685

686686

687687
request.Method = "POST";
688-
688+
689689
if (!String.IsNullOrEmpty(postdata))
690690
{
691691
byte[] payload = Encoding.UTF8.GetBytes(postdata);

0 commit comments

Comments
 (0)