├── .asset ├── define_PUBLISH_IEDRIVER_compilation_symbol.png ├── fig.001.png ├── nupkg-icon.docx └── nupkg-icon.png ├── .gitignore ├── .vscode ├── settings.json └── tasks.json ├── BuildPackage.bat ├── LICENSE ├── README.md ├── RELEASE-NOTES.txt ├── TestDrive1 ├── .editorconfig ├── Program.cs ├── TestDrive1.csproj ├── TestDrive1.sln ├── global.json └── nuget.config ├── dist └── .gitkeep ├── downloads └── .gitkeep ├── src ├── DefinePropertiesIEDriver.targets ├── Selenium.WebDriver.IEDriver.nuspec ├── Selenium.WebDriver.IEDriver.targets └── Selenium.WebDriver.IEDriver.targets.src └── test ├── BuildProjectABTest.cs ├── BuildTest.cs ├── GlobalUsing.cs ├── Internals └── XProcessExtensions.cs ├── Project ├── program.cs └── project.csproj ├── ProjectAB ├── ProjectA │ ├── packages.config │ ├── program.cs │ └── projectA.csproj ├── ProjectAB.sln └── ProjectB │ ├── program.cs │ └── projectB.csproj ├── Selenium.WebDriver.IEDriver.NuPkg.Test.csproj ├── Selenium.WebDriver.IEDriver.NuPkg.Test.sln ├── global.json └── nuget.config /.asset/define_PUBLISH_IEDRIVER_compilation_symbol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/.asset/define_PUBLISH_IEDRIVER_compilation_symbol.png -------------------------------------------------------------------------------- /.asset/fig.001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/.asset/fig.001.png -------------------------------------------------------------------------------- /.asset/nupkg-icon.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/.asset/nupkg-icon.docx -------------------------------------------------------------------------------- /.asset/nupkg-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/.asset/nupkg-icon.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /BuildPackage.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/BuildPackage.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/RELEASE-NOTES.txt -------------------------------------------------------------------------------- /TestDrive1/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/TestDrive1/.editorconfig -------------------------------------------------------------------------------- /TestDrive1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/TestDrive1/Program.cs -------------------------------------------------------------------------------- /TestDrive1/TestDrive1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/TestDrive1/TestDrive1.csproj -------------------------------------------------------------------------------- /TestDrive1/TestDrive1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/TestDrive1/TestDrive1.sln -------------------------------------------------------------------------------- /TestDrive1/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/TestDrive1/global.json -------------------------------------------------------------------------------- /TestDrive1/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/TestDrive1/nuget.config -------------------------------------------------------------------------------- /dist/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /downloads/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DefinePropertiesIEDriver.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/src/DefinePropertiesIEDriver.targets -------------------------------------------------------------------------------- /src/Selenium.WebDriver.IEDriver.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/src/Selenium.WebDriver.IEDriver.nuspec -------------------------------------------------------------------------------- /src/Selenium.WebDriver.IEDriver.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/src/Selenium.WebDriver.IEDriver.targets -------------------------------------------------------------------------------- /src/Selenium.WebDriver.IEDriver.targets.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/src/Selenium.WebDriver.IEDriver.targets.src -------------------------------------------------------------------------------- /test/BuildProjectABTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/BuildProjectABTest.cs -------------------------------------------------------------------------------- /test/BuildTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/BuildTest.cs -------------------------------------------------------------------------------- /test/GlobalUsing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/GlobalUsing.cs -------------------------------------------------------------------------------- /test/Internals/XProcessExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/Internals/XProcessExtensions.cs -------------------------------------------------------------------------------- /test/Project/program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/Project/program.cs -------------------------------------------------------------------------------- /test/Project/project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/Project/project.csproj -------------------------------------------------------------------------------- /test/ProjectAB/ProjectA/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/ProjectAB/ProjectA/packages.config -------------------------------------------------------------------------------- /test/ProjectAB/ProjectA/program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/ProjectAB/ProjectA/program.cs -------------------------------------------------------------------------------- /test/ProjectAB/ProjectA/projectA.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/ProjectAB/ProjectA/projectA.csproj -------------------------------------------------------------------------------- /test/ProjectAB/ProjectAB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/ProjectAB/ProjectAB.sln -------------------------------------------------------------------------------- /test/ProjectAB/ProjectB/program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/ProjectAB/ProjectB/program.cs -------------------------------------------------------------------------------- /test/ProjectAB/ProjectB/projectB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/ProjectAB/ProjectB/projectB.csproj -------------------------------------------------------------------------------- /test/Selenium.WebDriver.IEDriver.NuPkg.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/Selenium.WebDriver.IEDriver.NuPkg.Test.csproj -------------------------------------------------------------------------------- /test/Selenium.WebDriver.IEDriver.NuPkg.Test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/Selenium.WebDriver.IEDriver.NuPkg.Test.sln -------------------------------------------------------------------------------- /test/global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/global.json -------------------------------------------------------------------------------- /test/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsakamoto/nupkg-selenium-webdriver-iedriver/HEAD/test/nuget.config --------------------------------------------------------------------------------