Skip to content

Commit 3e4efb0

Browse files
authored
Merge pull request #25 from sharwell/vsix-testing
Switch to VsixTesting.Xunit
2 parents 864fc41 + 1f7dc9b commit 3e4efb0

File tree

59 files changed

+799
-3258
lines changed

Some content is hidden

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

59 files changed

+799
-3258
lines changed

MouseFastScroll.sln

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tvl.VisualStudio.MouseFastS
1818
EndProject
1919
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tvl.VisualStudio.MouseFastScroll.IntegrationTests", "Tvl.VisualStudio.MouseFastScroll.IntegrationTests\Tvl.VisualStudio.MouseFastScroll.IntegrationTests.csproj", "{05BCF25F-BC5C-40AC-8A2C-66EB3969F0FB}"
2020
EndProject
21-
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tvl.VisualStudio.MouseFastScroll.IntegrationTestService", "Tvl.VisualStudio.MouseFastScroll.IntegrationTestService\Tvl.VisualStudio.MouseFastScroll.IntegrationTestService.csproj", "{0366D6B8-8F75-47C2-A11E-1E69F1B9380C}"
22-
EndProject
2321
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Tvl.VisualStudio.MouseFastScroll.UnitTests", "Tvl.VisualStudio.MouseFastScroll.UnitTests\Tvl.VisualStudio.MouseFastScroll.UnitTests.csproj", "{5630A9D3-6B83-473B-BCE7-FFEB6D2E1063}"
2422
EndProject
2523
Global
@@ -32,14 +30,10 @@ Global
3230
{7DFA0DD1-8052-464D-9A1A-5EADC10A84B0}.Debug|Any CPU.Build.0 = Debug|Any CPU
3331
{7DFA0DD1-8052-464D-9A1A-5EADC10A84B0}.Release|Any CPU.ActiveCfg = Release|Any CPU
3432
{7DFA0DD1-8052-464D-9A1A-5EADC10A84B0}.Release|Any CPU.Build.0 = Release|Any CPU
35-
{05BCF25F-BC5C-40AC-8A2C-66EB3969F0FB}.Debug|Any CPU.ActiveCfg = Debug|x86
36-
{05BCF25F-BC5C-40AC-8A2C-66EB3969F0FB}.Debug|Any CPU.Build.0 = Debug|x86
37-
{05BCF25F-BC5C-40AC-8A2C-66EB3969F0FB}.Release|Any CPU.ActiveCfg = Release|x86
38-
{05BCF25F-BC5C-40AC-8A2C-66EB3969F0FB}.Release|Any CPU.Build.0 = Release|x86
39-
{0366D6B8-8F75-47C2-A11E-1E69F1B9380C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
40-
{0366D6B8-8F75-47C2-A11E-1E69F1B9380C}.Debug|Any CPU.Build.0 = Debug|Any CPU
41-
{0366D6B8-8F75-47C2-A11E-1E69F1B9380C}.Release|Any CPU.ActiveCfg = Release|Any CPU
42-
{0366D6B8-8F75-47C2-A11E-1E69F1B9380C}.Release|Any CPU.Build.0 = Release|Any CPU
33+
{05BCF25F-BC5C-40AC-8A2C-66EB3969F0FB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
34+
{05BCF25F-BC5C-40AC-8A2C-66EB3969F0FB}.Debug|Any CPU.Build.0 = Debug|Any CPU
35+
{05BCF25F-BC5C-40AC-8A2C-66EB3969F0FB}.Release|Any CPU.ActiveCfg = Release|Any CPU
36+
{05BCF25F-BC5C-40AC-8A2C-66EB3969F0FB}.Release|Any CPU.Build.0 = Release|Any CPU
4337
{5630A9D3-6B83-473B-BCE7-FFEB6D2E1063}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
4438
{5630A9D3-6B83-473B-BCE7-FFEB6D2E1063}.Debug|Any CPU.Build.0 = Debug|Any CPU
4539
{5630A9D3-6B83-473B-BCE7-FFEB6D2E1063}.Release|Any CPU.ActiveCfg = Release|Any CPU

THIRD-PARTY-NOTICES.txt

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,30 @@ Unless required by applicable law or agreed to in writing, software distributed
2121
under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
2222
CONDITIONS OF ANY KIND, either express or implied. See the License for the
2323
specific language governing permissions and limitations under the License.
24+
25+
License notice for Microsoft.VisualStudio.Threading
26+
---------------------------------------------------
27+
28+
Microsoft.VisualStudio.Threading
29+
Copyright (c) Microsoft Corporation
30+
All rights reserved.
31+
32+
MIT License
33+
34+
Permission is hereby granted, free of charge, to any person obtaining a copy
35+
of this software and associated documentation files (the "Software"), to deal
36+
in the Software without restriction, including without limitation the rights
37+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
38+
copies of the Software, and to permit persons to whom the Software is
39+
furnished to do so, subject to the following conditions:
40+
41+
The above copyright notice and this permission notice shall be included in all
42+
copies or substantial portions of the Software.
43+
44+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
45+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
46+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
47+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
48+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
49+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
50+
SOFTWARE.

Tvl.VisualStudio.MouseFastScroll.IntegrationTestService/IntegrationService.cs

Lines changed: 0 additions & 79 deletions
This file was deleted.

Tvl.VisualStudio.MouseFastScroll.IntegrationTestService/IntegrationTestServiceCommands.cs

Lines changed: 0 additions & 125 deletions
This file was deleted.

Tvl.VisualStudio.MouseFastScroll.IntegrationTestService/IntegrationTestServiceCommands.vsct

Lines changed: 0 additions & 36 deletions
This file was deleted.

Tvl.VisualStudio.MouseFastScroll.IntegrationTestService/IntegrationTestServicePackage.cs

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)