├── .gitignore ├── license.txt ├── nuget ├── OverrideXml.1.0.nupkg ├── OverrideXml.nuspec └── pack.bat ├── readme.txt └── src ├── App.config ├── OverrideXml.cs ├── OverrideXml.sln ├── OverrideXmlSample.csproj ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── ThirdPartySample ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs └── ThirdPartySample.csproj └── Versioning ├── FileCreator ├── App.config ├── FileCreator.cs ├── FileCreator.csproj └── Properties │ └── AssemblyInfo.cs └── FileCreatorV2 ├── App.config ├── FileCreatorV2.cs ├── FileCreatorV2.csproj └── Properties └── AssemblyInfo.cs /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/.gitignore -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/license.txt -------------------------------------------------------------------------------- /nuget/OverrideXml.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/nuget/OverrideXml.1.0.nupkg -------------------------------------------------------------------------------- /nuget/OverrideXml.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/nuget/OverrideXml.nuspec -------------------------------------------------------------------------------- /nuget/pack.bat: -------------------------------------------------------------------------------- 1 | nuget pack OverrideXml.nuspec -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/readme.txt -------------------------------------------------------------------------------- /src/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/App.config -------------------------------------------------------------------------------- /src/OverrideXml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/OverrideXml.cs -------------------------------------------------------------------------------- /src/OverrideXml.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/OverrideXml.sln -------------------------------------------------------------------------------- /src/OverrideXmlSample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/OverrideXmlSample.csproj -------------------------------------------------------------------------------- /src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/Program.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ThirdPartySample/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/ThirdPartySample/App.config -------------------------------------------------------------------------------- /src/ThirdPartySample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/ThirdPartySample/Program.cs -------------------------------------------------------------------------------- /src/ThirdPartySample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/ThirdPartySample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/ThirdPartySample/ThirdPartySample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/ThirdPartySample/ThirdPartySample.csproj -------------------------------------------------------------------------------- /src/Versioning/FileCreator/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/Versioning/FileCreator/App.config -------------------------------------------------------------------------------- /src/Versioning/FileCreator/FileCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/Versioning/FileCreator/FileCreator.cs -------------------------------------------------------------------------------- /src/Versioning/FileCreator/FileCreator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/Versioning/FileCreator/FileCreator.csproj -------------------------------------------------------------------------------- /src/Versioning/FileCreator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/Versioning/FileCreator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Versioning/FileCreatorV2/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/Versioning/FileCreatorV2/App.config -------------------------------------------------------------------------------- /src/Versioning/FileCreatorV2/FileCreatorV2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/Versioning/FileCreatorV2/FileCreatorV2.cs -------------------------------------------------------------------------------- /src/Versioning/FileCreatorV2/FileCreatorV2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/Versioning/FileCreatorV2/FileCreatorV2.csproj -------------------------------------------------------------------------------- /src/Versioning/FileCreatorV2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikriv/OverrideXml/HEAD/src/Versioning/FileCreatorV2/Properties/AssemblyInfo.cs --------------------------------------------------------------------------------