Skip to content
This repository was archived by the owner on Aug 29, 2020. It is now read-only.

Commit 9e741ec

Browse files
committed
add missing files
1 parent d1007a2 commit 9e741ec

11 files changed

+18
-8
lines changed
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

ReleaseNotesCompiler.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 2012
4-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReleaseNotesCompiler", "ReleaseNotesCompiler\ReleaseNotesCompiler.csproj", "{B02A026E-CA3A-48F4-BBA9-EB337B0A2035}"
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReleaseNotesCompiler", "Compiler\ReleaseNotesCompiler.csproj", "{B02A026E-CA3A-48F4-BBA9-EB337B0A2035}"
55
EndProject
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReleaseNotesCompiler.Tests", "ReleaseNotesCompiler.Tests\ReleaseNotesCompiler.Tests.csproj", "{FAD045A3-CF63-48CA-BA49-8F4D79E3EF4F}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ReleaseNotesCompiler.Tests", "Tests\ReleaseNotesCompiler.Tests.csproj", "{FAD045A3-CF63-48CA-BA49-8F4D79E3EF4F}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
File renamed without changes.

Tests/ClipBoardHelper.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
using System.Threading;
2+
using System.Windows.Forms;
3+
4+
class ClipBoardHelper
5+
{
6+
public static void SetClipboard(string result)
7+
{
8+
var thread = new Thread(() => Clipboard.SetText(result));
9+
thread.SetApartmentState(ApartmentState.STA);
10+
thread.Start();
11+
thread.Join();
12+
}
13+
}

ReleaseNotesCompiler.Tests/ReleaseNotesBuilderTests.cs renamed to Tests/ReleaseNotesBuilderTests.cs

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
1-
using System;
2-
using System.Diagnostics;
3-
using System.Net.Http.Headers;
1+
using System.Diagnostics;
42
using NUnit.Framework;
5-
using Octokit;
63
using ReleaseNotesCompiler;
74

85
[TestFixture]
@@ -32,7 +29,7 @@ public async void SingleMilestone2()
3229
}
3330
[Test]
3431
[Explicit]
35-
public async void OctokitTests()
32+
public void OctokitTests()
3633
{
3734
var gitHubClient = ClientBuilder.Build();
3835
}

ReleaseNotesCompiler.Tests/ReleaseNotesCompiler.Tests.csproj renamed to Tests/ReleaseNotesCompiler.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
</None>
5858
</ItemGroup>
5959
<ItemGroup>
60-
<ProjectReference Include="..\ReleaseNotesCompiler\ReleaseNotesCompiler.csproj">
60+
<ProjectReference Include="..\Compiler\ReleaseNotesCompiler.csproj">
6161
<Project>{B02A026E-CA3A-48F4-BBA9-EB337B0A2035}</Project>
6262
<Name>ReleaseNotesCompiler</Name>
6363
</ProjectReference>

0 commit comments

Comments
 (0)