This repository has been archived by the owner on Apr 1, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix nuget package, add test project readme
- Loading branch information
1 parent
5a74f4b
commit 0fae1c0
Showing
4 changed files
with
52 additions
and
30 deletions.
There are no files selected for viewing
54 changes: 28 additions & 26 deletions
54
src/Expecto.VisualStudio.TestAdapter/Expecto.VisualStudio.TestAdapter.nuspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,30 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>Expecto.VisualStudio.TestAdapter</id> | ||
<version>1.0.0.0-alpha001</version> | ||
<title>Expecto.Adapter</title> | ||
<authors>Expecto</authors> | ||
<owners>adamchester</owners> | ||
<licenseUrl>https://github.com/adamchester/expecto-adapter/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>https://github.com/adamchester/expecto</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>Visual Studio test adapter for Expecto. Shows Expecto tests in Visual Studio's Test Explorer, and also enables them to be run in Visual Studio Online builds.</description> | ||
<releaseNotes></releaseNotes> | ||
<copyright>Copyright © 2016 Ian Griffiths</copyright> | ||
<tags>Expecto, Visual Studio, Test Adapter, testadapter</tags> | ||
<references> | ||
</references> | ||
</metadata> | ||
<files> | ||
<file src="bin/Release/FSharp.Core.dll" target="tools\FSharp.Core.dll" /> | ||
<file src="bin/Release/Expecto.VisualStudio.TestAdapter.dll" target="tools\Expecto.VisualStudio.TestAdapter.dll" /> | ||
<file src="bin/Release/Mono.Cecil.dll" target="tools\Mono.Cecil.dll" /> | ||
<file src="bin/Release/Mono.Cecil.dll" target="tools\Mono.Cecil.dll" /> | ||
<file src="bin/Release/Mono.Cecil.Pdb.dll" target="tools\Mono.Cecil.Pdb.dll" /> | ||
<file src="bin/Release/Mono.Cecil.Rocks.dll" target="tools\Mono.Cecil.Rocks.dll" /> | ||
<file src="bin/Release/Newtonsoft.Json.dll" target="tools\Newtonsoft.Json.dll" /> | ||
</files> | ||
</package> | ||
<metadata> | ||
<id>Expecto.VisualStudio.TestAdapter</id> | ||
<version>1.0.0-alpha003</version> | ||
<title>Expecto.VisualStudio.TestAdapter</title> | ||
<authors>Expecto</authors> | ||
<owners>adamchester</owners> | ||
<licenseUrl>https://github.com/adamchester/expecto-adapter/blob/master/LICENSE</licenseUrl> | ||
<projectUrl>https://github.com/adamchester/expecto-adapter</projectUrl> | ||
<requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
<description>Visual Studio test adapter for Expecto. Shows Expecto tests in Visual Studio's Test Explorer, and also enables them to be run in Visual Studio Online builds.</description> | ||
<releaseNotes></releaseNotes> | ||
<copyright>Copyright © 2016 Ian Griffiths</copyright> | ||
<tags>Expecto, Visual Studio, Test Adapter, testadapter</tags> | ||
<developmentDependency>true</developmentDependency> | ||
</metadata> | ||
<files> | ||
<file src="bin/Release/Expecto.VisualStudio.TestAdapter.dll" target="tools\Expecto.VisualStudio.TestAdapter.dll" /> | ||
<file src="bin/Release/Argu.dll" target="tools\Argu.dll" /> | ||
<file src="bin/Release/Expecto.dll" target="tools\Expecto.dll" /> | ||
<file src="bin/Release/FSharp.Core.dll" target="tools\FSharp.Core.dll" /> | ||
<file src="bin/Release/Mono.Cecil.dll" target="tools\Mono.Cecil.dll" /> | ||
<file src="bin/Release/Mono.Cecil.dll" target="tools\Mono.Cecil.dll" /> | ||
<file src="bin/Release/Mono.Cecil.Mdb.dll" target="tools\Mono.Cecil.Mdb.dll" /> | ||
<file src="bin/Release/Mono.Cecil.Pdb.dll" target="tools\Mono.Cecil.Pdb.dll" /> | ||
<file src="bin/Release/Mono.Cecil.Rocks.dll" target="tools\Mono.Cecil.Rocks.dll" /> | ||
<file src="bin/Release/Newtonsoft.Json.dll" target="tools\Newtonsoft.Json.dll" /> | ||
</files> | ||
</package> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
| ||
You can debug the test adapter by setting this project to | ||
|
||
* Start Action / Start external program = C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TestWindow\vstest.console.exe | ||
* Start Options / Command line arguments = Expecto.Vstest.Console.exe /testadapterpath:. | ||
|
||
Then start the debugger (e.g. F5). | ||
|