Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
mmanela committed Sep 16, 2016
0 parents commit 554b35b
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Package.nuspec
@@ -0,0 +1,11 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>Microsoft.VisualStudio.TestWindow.Interfaces</id>
<version>11.0.61030.0</version>
<authors>Matthew Manela</authors>
<owners>Matthew Manela</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Provides the Microsoft.VisualStudio.TestWindow.Interfaces dll</description>
</metadata>
</package>
Binary file not shown.
16 changes: 16 additions & 0 deletions tools/install.ps1
@@ -0,0 +1,16 @@
param($installPath, $toolsPath, $package, $project)

foreach ($reference in $project.Object.References)
{
switch -regex ($reference.Name.ToLowerInvariant())
{
"^Microsoft\.VisualStudio\.TestWindow\.Interfaces$"
{
$reference.CopyLocal = $false;
}
default
{
# ignore
}
}
}

0 comments on commit 554b35b

Please sign in to comment.