Skip to content
This repository was archived by the owner on Jun 17, 2019. It is now read-only.

Commit c21cbf2

Browse files
Merge pull request #4 from justaprogrammer/minor-feedback
Need to see the response for debugging purposes
2 parents 5b2ed4d + 8541893 commit c21cbf2

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ before_build:
99
- ps: gitversion /output buildserver
1010
build_script:
1111
- ps: >-
12-
fake run Build.fsx -p 3
12+
fake run Build.fsx
1313
test: off

src/BCC.Submission/BCC.Submission.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
<OutputType>Exe</OutputType>
55
<TargetFrameworks>netcoreapp2.1;net471</TargetFrameworks>
66
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
7+
<AssemblyName>BCCSubmission</AssemblyName>
8+
<StartupObject>BCC.Submission.Program</StartupObject>
79
</PropertyGroup>
810

911
<ItemGroup>

src/BCC.Submission/Services/SubmissionService.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ public async Task<bool> SubmitAsync(string inputFile, string token, string headS
3939
var restResponse = await _restClient.ExecutePostTaskAsync(request)
4040
.ConfigureAwait(false);
4141

42+
Console.WriteLine("Response: {0}", restResponse.StatusCode.ToString());
43+
4244
return restResponse.StatusCode == HttpStatusCode.OK;
4345
}
4446
}

0 commit comments

Comments
 (0)