├── .build.ps1 ├── .gitignore ├── Examples ├── Add-ProjectReference.ps1 ├── Clear-Dgml.ps1 ├── Update-ILSpyList.ps1 └── Update-WebXml.ps1 ├── LICENSE ├── Module └── en-US │ ├── Xmlips.dll-Help.ps1 │ └── about_Xmlips.help.txt ├── README.md ├── Release-Notes.md ├── Src ├── AttributeChange.cs ├── BaseXsltContext.cs ├── CmdletXsltContext.cs ├── Commands │ ├── AddXmlCommand.cs │ ├── CopyXmlCommand.cs │ ├── ExportXmlCommand.cs │ ├── FindXmlCommand.cs │ ├── GetXmlCommand.cs │ ├── ImportXmlCommand.cs │ ├── NewXmlCommand.cs │ ├── ReadXmlCommand.cs │ ├── RemoveXmlCommand.cs │ ├── SaveXmlCommand.cs │ └── SetXmlCommand.cs ├── FileXmlDocument.cs ├── GlobalSuppressions.cs ├── PS.cs ├── Xmlips.csproj └── XsltContextVariable.cs └── Tests ├── About.test.ps1 ├── Add-Xml.test.ps1 ├── Copy-Xml.test.ps1 ├── Export-Xml.test.ps1 ├── Find-Xml.test.ps1 ├── Get-Xml.test.ps1 ├── Import-Xml.test.ps1 ├── New-Xml.test.ps1 ├── Read-Xml.test.ps1 ├── Remove-Xml.test.ps1 └── Set-Xml.test.ps1 /.build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/.build.ps1 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | obj 3 | z 4 | *.htm 5 | *.user 6 | Module/*.psd1 7 | Src/Directory.Build.props 8 | -------------------------------------------------------------------------------- /Examples/Add-ProjectReference.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Examples/Add-ProjectReference.ps1 -------------------------------------------------------------------------------- /Examples/Clear-Dgml.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Examples/Clear-Dgml.ps1 -------------------------------------------------------------------------------- /Examples/Update-ILSpyList.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Examples/Update-ILSpyList.ps1 -------------------------------------------------------------------------------- /Examples/Update-WebXml.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Examples/Update-WebXml.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/LICENSE -------------------------------------------------------------------------------- /Module/en-US/Xmlips.dll-Help.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Module/en-US/Xmlips.dll-Help.ps1 -------------------------------------------------------------------------------- /Module/en-US/about_Xmlips.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Module/en-US/about_Xmlips.help.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/README.md -------------------------------------------------------------------------------- /Release-Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Release-Notes.md -------------------------------------------------------------------------------- /Src/AttributeChange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/AttributeChange.cs -------------------------------------------------------------------------------- /Src/BaseXsltContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/BaseXsltContext.cs -------------------------------------------------------------------------------- /Src/CmdletXsltContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/CmdletXsltContext.cs -------------------------------------------------------------------------------- /Src/Commands/AddXmlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/Commands/AddXmlCommand.cs -------------------------------------------------------------------------------- /Src/Commands/CopyXmlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/Commands/CopyXmlCommand.cs -------------------------------------------------------------------------------- /Src/Commands/ExportXmlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/Commands/ExportXmlCommand.cs -------------------------------------------------------------------------------- /Src/Commands/FindXmlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/Commands/FindXmlCommand.cs -------------------------------------------------------------------------------- /Src/Commands/GetXmlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/Commands/GetXmlCommand.cs -------------------------------------------------------------------------------- /Src/Commands/ImportXmlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/Commands/ImportXmlCommand.cs -------------------------------------------------------------------------------- /Src/Commands/NewXmlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/Commands/NewXmlCommand.cs -------------------------------------------------------------------------------- /Src/Commands/ReadXmlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/Commands/ReadXmlCommand.cs -------------------------------------------------------------------------------- /Src/Commands/RemoveXmlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/Commands/RemoveXmlCommand.cs -------------------------------------------------------------------------------- /Src/Commands/SaveXmlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/Commands/SaveXmlCommand.cs -------------------------------------------------------------------------------- /Src/Commands/SetXmlCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/Commands/SetXmlCommand.cs -------------------------------------------------------------------------------- /Src/FileXmlDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/FileXmlDocument.cs -------------------------------------------------------------------------------- /Src/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Src/PS.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/PS.cs -------------------------------------------------------------------------------- /Src/Xmlips.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/Xmlips.csproj -------------------------------------------------------------------------------- /Src/XsltContextVariable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Src/XsltContextVariable.cs -------------------------------------------------------------------------------- /Tests/About.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Tests/About.test.ps1 -------------------------------------------------------------------------------- /Tests/Add-Xml.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Tests/Add-Xml.test.ps1 -------------------------------------------------------------------------------- /Tests/Copy-Xml.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Tests/Copy-Xml.test.ps1 -------------------------------------------------------------------------------- /Tests/Export-Xml.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Tests/Export-Xml.test.ps1 -------------------------------------------------------------------------------- /Tests/Find-Xml.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Tests/Find-Xml.test.ps1 -------------------------------------------------------------------------------- /Tests/Get-Xml.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Tests/Get-Xml.test.ps1 -------------------------------------------------------------------------------- /Tests/Import-Xml.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Tests/Import-Xml.test.ps1 -------------------------------------------------------------------------------- /Tests/New-Xml.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Tests/New-Xml.test.ps1 -------------------------------------------------------------------------------- /Tests/Read-Xml.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Tests/Read-Xml.test.ps1 -------------------------------------------------------------------------------- /Tests/Remove-Xml.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Tests/Remove-Xml.test.ps1 -------------------------------------------------------------------------------- /Tests/Set-Xml.test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nightroman/Xmlips/HEAD/Tests/Set-Xml.test.ps1 --------------------------------------------------------------------------------