Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions Libraries/Catch2.TestAdapter.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>Catch2.TestAdapter</id>
<version>$version$</version>
<title>Visual Studio Test Adapter for Catch2</title>
<authors>JohnnyHendriks</authors>
<owners>JohnnyHendriks</owners>
<projectUrl>https://github.com/JohnnyHendriks/TestAdapter_Catch2</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<license type="expression">MIT</license>
<description>
Class library containing the Visual Studio Test Adapter for Catch2
</description>
<releaseNotes></releaseNotes>
<copyright></copyright>
<tags>native catch2 test adapter</tags>
<dependencies>
<group targetFramework="native" />
</dependencies>
</metadata>
<files>
<!-- Must copy the files to the folder "native" to make the package installable in native projects.
The Visual Studio test window recognizes any file named *.TestAdapter.dll in a nuget package
as a potential adapter, not caring about the platform. See
https://github.com/microsoft/vstest/blob/main/docs/RFCs/0004-Adapter-Extensibility.md -->
<file src="Catch2TestAdapter\bin\$configuration$\Catch2.TestAdapter.dll" target="lib\native\" />
<file src="Catch2Interface\bin\$configuration$\Catch2Interface.dll" target="lib\native\" />
</files>
</package>
2 changes: 1 addition & 1 deletion Libraries/Catch2TestAdapter/Catch2TestAdapter.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Catch2TestAdapter</RootNamespace>
<AssemblyName>Catch2TestAdapter</AssemblyName>
<AssemblyName>Catch2.TestAdapter</AssemblyName>
<TargetFrameworkVersion>v4.6</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
Expand Down