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

Commit 1772bde

Browse files
committed
Merge branch 'master' into fixes/1271-checkout-with-untracked-files
2 parents ad25244 + 5044714 commit 1772bde

File tree

81 files changed

+20
-20
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

81 files changed

+20
-20
lines changed

GitHubVS.sln

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Meta", "Meta", "{72036B62-2
1313
README.md = README.md
1414
EndProjectSection
1515
EndProject
16-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTests", "src\UnitTests\UnitTests.csproj", "{596595A6-2A3C-469E-9386-9E3767D863A5}"
16+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "UnitTests", "test\UnitTests\UnitTests.csproj", "{596595A6-2A3C-469E-9386-9E3767D863A5}"
1717
EndProject
1818
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GitHub.UI", "src\GitHub.UI\GitHub.UI.csproj", "{346384DD-2445-4A28-AF22-B45F3957BD89}"
1919
EndProject
@@ -88,7 +88,7 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Splat-Portable", "submodule
8888
EndProject
8989
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CredentialManagement", "src\CredentialManagement\CredentialManagement.csproj", "{41A47C5B-C606-45B4-B83C-22B9239E4DA0}"
9090
EndProject
91-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TrackingCollectionTests", "src\TrackingCollectionTests\TrackingCollectionTests.csproj", "{7B835A7D-CF94-45E8-B191-96F5A4FE26A8}"
91+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TrackingCollectionTests", "test\TrackingCollectionTests\TrackingCollectionTests.csproj", "{7B835A7D-CF94-45E8-B191-96F5A4FE26A8}"
9292
EndProject
9393
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GitHub.TeamFoundation.14", "src\GitHub.TeamFoundation.14\GitHub.TeamFoundation.14.csproj", "{161DBF01-1DBF-4B00-8551-C5C00F26720D}"
9494
EndProject

scripts/test.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ $env:PATH = "$$PSScriptRoot;$env:PATH"
3535
$exitcode = 0
3636

3737
Write-Output "Running Tracking Collection Tests..."
38-
Run-NUnit src TrackingCollectionTests $TimeoutDuration $config -AppVeyor:$AppVeyor
38+
Run-NUnit test TrackingCollectionTests $TimeoutDuration $config -AppVeyor:$AppVeyor
3939
if (!$?) {
4040
$exitcode = 1
4141
}
@@ -47,7 +47,7 @@ if (!$?) {
4747
}
4848

4949
Write-Output "Running UnitTests..."
50-
Run-XUnit src UnitTests $TimeoutDuration $config -AppVeyor:$AppVeyor
50+
Run-XUnit test UnitTests $TimeoutDuration $config -AppVeyor:$AppVeyor
5151
if (!$?) {
5252
$exitcode = 3
5353
}
File renamed without changes.

src/TrackingCollectionTests/ListenerCollectionTests.cs renamed to test/TrackingCollectionTests/ListenerCollectionTests.cs

File renamed without changes.

src/TrackingCollectionTests/Properties/AssemblyInfo.cs renamed to test/TrackingCollectionTests/Properties/AssemblyInfo.cs

File renamed without changes.

src/TrackingCollectionTests/TrackingCollectionTests.cs renamed to test/TrackingCollectionTests/TrackingCollectionTests.cs

File renamed without changes.

src/TrackingCollectionTests/TrackingCollectionTests.csproj renamed to test/TrackingCollectionTests/TrackingCollectionTests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,15 +118,15 @@
118118
<Project>{252ce1c2-027a-4445-a3c2-e4d6c80a935a}</Project>
119119
<Name>Splat-Net45</Name>
120120
</ProjectReference>
121-
<ProjectReference Include="..\GitHub.Exports.Reactive\GitHub.Exports.Reactive.csproj">
121+
<ProjectReference Include="..\..\src\GitHub.Exports.Reactive\GitHub.Exports.Reactive.csproj">
122122
<Project>{e4ed0537-d1d9-44b6-9212-3096d7c3f7a1}</Project>
123123
<Name>GitHub.Exports.Reactive</Name>
124124
</ProjectReference>
125-
<ProjectReference Include="..\GitHub.Exports\GitHub.Exports.csproj">
125+
<ProjectReference Include="..\..\src\GitHub.Exports\GitHub.Exports.csproj">
126126
<Project>{9aea02db-02b5-409c-b0ca-115d05331a6b}</Project>
127127
<Name>GitHub.Exports</Name>
128128
</ProjectReference>
129-
<ProjectReference Include="..\GitHub.Extensions\GitHub.Extensions.csproj">
129+
<ProjectReference Include="..\..\src\GitHub.Extensions\GitHub.Extensions.csproj">
130130
<Project>{6afe2e2d-6db0-4430-a2ea-f5f5388d2f78}</Project>
131131
<Name>GitHub.Extensions</Name>
132132
</ProjectReference>
File renamed without changes.

0 commit comments

Comments
 (0)