Skip to content

Commit 831bded

Browse files
committed
Rebase/Merge error fixes and added travis.yml
1 parent a3effe2 commit 831bded

3 files changed

Lines changed: 5 additions & 10 deletions

File tree

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
language: csharp
2+
solution: TextSummarize.sln

PageRank/PageRank.csproj

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,6 @@
4040
<Reference Include="System.Xml" />
4141
</ItemGroup>
4242
<ItemGroup>
43-
<Compile Include="Class1.cs" />
44-
<Compile Include="DeepCloneHelper.cs" />
4543
<Compile Include="Graph\DirectedGraph.cs" />
4644
<Compile Include="Graph\Graph.cs" />
4745
<Compile Include="Graph\GraphNode.cs" />
@@ -52,9 +50,10 @@
5250
<Compile Include="Graph\Node.cs" />
5351
<Compile Include="Graph\NodeSet.cs" />
5452
<Compile Include="Graph\UnDirectedGraph.cs" />
53+
<Compile Include="PageRank.cs" />
5554
<Compile Include="Properties\AssemblyInfo.cs" />
56-
<Compile Include="Rank\PageRank.cs" />
57-
<Compile Include="Utils.cs" />
55+
<Compile Include="Utils\DeepCloneHelper.cs" />
56+
<Compile Include="Utils\Utils.cs" />
5857
</ItemGroup>
5958
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
6059
</Project>

TextSummarize.sln

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextRank", "TextRank\TextRa
99
EndProject
1010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TextSummarize", "TextSummarize\TextSummarize.csproj", "{94C43C23-7D66-4657-A67F-34335223B190}"
1111
EndProject
12-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebApplication", "WebApplication1\WebApplication.csproj", "{2E65E921-0534-4743-AA79-F820B55B41F7}"
13-
EndProject
1412
Global
1513
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1614
Debug|Any CPU = Debug|Any CPU
@@ -29,10 +27,6 @@ Global
2927
{94C43C23-7D66-4657-A67F-34335223B190}.Debug|Any CPU.Build.0 = Debug|Any CPU
3028
{94C43C23-7D66-4657-A67F-34335223B190}.Release|Any CPU.ActiveCfg = Release|Any CPU
3129
{94C43C23-7D66-4657-A67F-34335223B190}.Release|Any CPU.Build.0 = Release|Any CPU
32-
{2E65E921-0534-4743-AA79-F820B55B41F7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33-
{2E65E921-0534-4743-AA79-F820B55B41F7}.Debug|Any CPU.Build.0 = Debug|Any CPU
34-
{2E65E921-0534-4743-AA79-F820B55B41F7}.Release|Any CPU.ActiveCfg = Release|Any CPU
35-
{2E65E921-0534-4743-AA79-F820B55B41F7}.Release|Any CPU.Build.0 = Release|Any CPU
3630
EndGlobalSection
3731
GlobalSection(SolutionProperties) = preSolution
3832
HideSolutionNode = FALSE

0 commit comments

Comments
 (0)