Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add interop package #3

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
19 changes: 19 additions & 0 deletions Interop.UIAutomationCore.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>TestStack.Interop.UIAutomationCore</id>
<version>$version$</version>
<title>TestStack.Interop.UIAutomationCore</title>
<summary>Interop.UIAutomationCore.dll exposes UIAutomationCore functionality for use by managed code.</summary>
<description>This exposes UIAutomation functionality that is defined in UIAutomationCore.idl</description>
<authors>Ivan Danilov</authors>
<owners>Ivan Danilov</owners>
<projectUrl>https://github.com/TestStack/uia-custom-pattern-managed</projectUrl>
<license type="expression">MIT</license>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<tags>UIAutomation Testing UIA WPF Win32 Automation</tags>
</metadata>
<files>
<file src=".\UIACoreInterop\Build\Interop.UIAutomationCore.dll" target="lib\net40" />
</files>
</package>
6 changes: 5 additions & 1 deletion build-and-publish.bat
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ if errorlevel 1 goto somethingbad
GitLink . -u https://github.com/TestStack/uia-custom-pattern-managed -c Release -include ManagedUiaCustomizationCore
if errorlevel 1 goto somethingbad

echo nuget pack Interop.UIAutomationCore.nuspec -version "%GitVersion_NuGetVersion%"
nuget pack Interop.UIAutomationCore.nuspec -version "%GitVersion_NuGetVersion%" -verbosity detailed -basepath .
if errorlevel 1 goto somethingbad

echo nuget pack UiaCustomPattersManaged.nuspec -version "%GitVersion_NuGetVersion%"
nuget pack UiaCustomPattersManaged.nuspec -version "%GitVersion_NuGetVersion%" -verbosity detailed -basepath .
if errorlevel 1 goto somethingbad
Expand All @@ -35,7 +39,7 @@ if errorlevel 1 goto somethingbad

echo Finished successfully
echo(---------------------
echo Remember to publish created nupkg file and update Changes section in Readme.md
echo Remember to publish created nupkg files and update Changes section in Readme.md
goto end

:somethingbad
Expand Down