├── .gitignore ├── GitVersionConfig.yaml ├── GitVersionConfig.yaml.txt ├── README.md ├── lib ├── CommandLineParser.1.9.71 │ ├── CommandLineParser.1.9.71.nupkg │ ├── lib │ │ ├── net35 │ │ │ ├── CommandLine.dll │ │ │ └── CommandLine.xml │ │ ├── net40 │ │ │ ├── CommandLine.dll │ │ │ └── CommandLine.xml │ │ └── net45 │ │ │ ├── CommandLine.dll │ │ │ └── CommandLine.xml │ └── readme.txt ├── GitReleaseNotes.0.6.0 │ ├── GitReleaseNotes.0.6.0.nupkg │ └── tools │ │ ├── GitReleaseNotes.exe │ │ ├── GitReleaseNotes.pdb │ │ └── NativeBinaries │ │ ├── amd64 │ │ └── git2-4a30c53.dll │ │ └── x86 │ │ └── git2-4a30c53.dll ├── GitVersion.CommandLine.2.0.1 │ ├── GitVersion.CommandLine.2.0.1.nupkg │ └── Tools │ │ ├── GitVersion.exe │ │ └── GitVersion.pdb ├── GitVersion.CommandLine.3.3.0 │ ├── GitVersion.CommandLine.3.3.0.nupkg │ └── tools │ │ ├── GitVersion.exe │ │ ├── GitVersion.pdb │ │ └── NativeBinaries │ │ ├── amd64 │ │ └── git2-e0902fb.dll │ │ └── x86 │ │ └── git2-e0902fb.dll ├── GithubReleaseCreator.1.1.0 │ ├── GithubReleaseCreator.1.1.0.nupkg │ └── tools │ │ ├── CommandLine.dll │ │ ├── GithubReleaseCreator.exe │ │ ├── Newtonsoft.Json.dll │ │ └── RestSharp.dll ├── MSBuildTasks.1.4.0.61 │ ├── MSBuildTasks.1.4.0.61.nupkg │ ├── content │ │ └── MSBuild.Community.Tasks.ReadMe.md │ └── tools │ │ ├── Build.proj │ │ ├── Install.ps1 │ │ ├── MSBuild.Community.Tasks.Targets │ │ ├── MSBuild.Community.Tasks.dll │ │ ├── MSBuild.Community.Tasks.xml │ │ └── MSBuild.psm1 ├── Microsoft.Composition.1.0.27 │ ├── License-Stable.rtf │ ├── Microsoft.Composition.1.0.27.nupkg │ └── lib │ │ └── portable-net45+win8+wp8+wpa81 │ │ ├── System.Composition.AttributedModel.XML │ │ ├── System.Composition.AttributedModel.dll │ │ ├── System.Composition.Convention.dll │ │ ├── System.Composition.Convention.xml │ │ ├── System.Composition.Hosting.XML │ │ ├── System.Composition.Hosting.dll │ │ ├── System.Composition.Runtime.XML │ │ ├── System.Composition.Runtime.dll │ │ ├── System.Composition.TypedParts.XML │ │ └── System.Composition.TypedParts.dll ├── Microsoft.Tpl.Dataflow.4.5.24 │ ├── License-Stable.rtf │ ├── Microsoft.Tpl.Dataflow.4.5.24.nupkg │ └── lib │ │ ├── portable-net45+win8+wp8+wpa81 │ │ ├── System.Threading.Tasks.Dataflow.dll │ │ └── system.threading.tasks.dataflow.xml │ │ └── portable-net45+win8+wpa81 │ │ ├── System.Threading.Tasks.Dataflow.dll │ │ └── system.threading.tasks.dataflow.xml ├── Microsoft.VisualStudio.Composition.14.0.50715-pre │ ├── Microsoft.VisualStudio.Composition.14.0.50715-pre.nupkg │ └── lib │ │ ├── net45 │ │ ├── Microsoft.VisualStudio.Composition.dll │ │ └── Microsoft.VisualStudio.Composition.xml │ │ └── net451 │ │ ├── Microsoft.VisualStudio.Composition.Configuration.dll │ │ ├── Microsoft.VisualStudio.Composition.Configuration.xml │ │ ├── Microsoft.VisualStudio.Composition.dll │ │ └── Microsoft.VisualStudio.Composition.xml ├── Microsoft.VisualStudio.ProjectSystem.14.1.80-pre │ ├── Microsoft.VisualStudio.ProjectSystem.14.1.80-pre.nupkg │ └── lib │ │ └── net451 │ │ ├── Microsoft.VisualStudio.ProjectSystem.Interop.dll │ │ ├── Microsoft.VisualStudio.ProjectSystem.Interop.xml │ │ ├── Microsoft.VisualStudio.ProjectSystem.Utilities.v14.0.dll │ │ ├── Microsoft.VisualStudio.ProjectSystem.Utilities.v14.0.xml │ │ ├── Microsoft.VisualStudio.ProjectSystem.V14Only.dll │ │ ├── Microsoft.VisualStudio.ProjectSystem.V14Only.xml │ │ ├── Microsoft.VisualStudio.ProjectSystem.VS.V14Only.dll │ │ └── Microsoft.VisualStudio.ProjectSystem.VS.V14Only.xml ├── Microsoft.VisualStudio.SDK.VsixSuppression.14.0.50703 │ ├── Microsoft.VisualStudio.SDK.VsixSuppression.14.0.50703.nupkg │ └── build │ │ └── Microsoft.VisualStudio.SDK.VsixSuppression.targets ├── Microsoft.VisualStudio.Threading.14.1.114 │ ├── Microsoft.VisualStudio.Threading.14.1.114.nupkg │ └── lib │ │ ├── dotnet │ │ ├── Microsoft.VisualStudio.Threading.dll │ │ └── Microsoft.VisualStudio.Threading.xml │ │ ├── net45 │ │ ├── Microsoft.VisualStudio.Threading.dll │ │ └── Microsoft.VisualStudio.Threading.xml │ │ └── portable-net45+win+wpa81 │ │ ├── Microsoft.VisualStudio.Threading.dll │ │ └── Microsoft.VisualStudio.Threading.xml ├── Microsoft.VisualStudio.Validation.14.1.111 │ ├── Microsoft.VisualStudio.Validation.14.1.111.nupkg │ ├── README.txt │ ├── lib │ │ ├── dotnet │ │ │ ├── Microsoft.VisualStudio.Validation.dll │ │ │ └── Microsoft.VisualStudio.Validation.xml │ │ ├── net45 │ │ │ ├── Microsoft.VisualStudio.Validation.dll │ │ │ └── Microsoft.VisualStudio.Validation.xml │ │ └── portable-net45+win+wpa81+wp80 │ │ │ ├── Microsoft.VisualStudio.Validation.dll │ │ │ └── Microsoft.VisualStudio.Validation.xml │ └── tools │ │ ├── 2013 │ │ ├── RequiresNotNull.snippet │ │ └── RequiresNotNullOrEmpty.snippet │ │ ├── 2015 │ │ ├── RequiresNotNull.snippet │ │ └── RequiresNotNullOrEmpty.snippet │ │ ├── install-snippets.cmd │ │ └── uninstall-snippets.cmd ├── Microsoft.Web.Administration.7.0.0.0 │ ├── Microsoft.Web.Administration.7.0.0.0.nupkg │ └── lib │ │ └── net20 │ │ └── Microsoft.Web.Administration.dll ├── Microsoft.Web.Infrastructure.1.0.0.0 │ ├── Microsoft.Web.Infrastructure.1.0.0.0.nupkg │ └── lib │ │ └── net40 │ │ └── Microsoft.Web.Infrastructure.dll ├── NUnit.2.6.4 │ ├── NUnit.2.6.4.nupkg │ ├── lib │ │ ├── nunit.framework.dll │ │ └── nunit.framework.xml │ └── license.txt ├── NuGet.CommandLine.2.8.2 │ ├── NuGet.CommandLine.2.8.2.nupkg │ └── tools │ │ └── NuGet.exe ├── NuGet.CommandLine.2.8.3 │ ├── NuGet.CommandLine.2.8.3.nupkg │ └── tools │ │ └── NuGet.exe ├── NuGetPowerTools.0.29 │ ├── NuGetPowerTools.0.29.nupkg │ ├── NuGetPowerTools.0.29.nuspec │ └── tools │ │ ├── MSBuild.psm1 │ │ ├── NuGetMSBuild.psm1 │ │ ├── NuGetPowerTools.psd1 │ │ ├── NuGetPowerTools.psm1 │ │ ├── VS.psm1 │ │ └── init.ps1 ├── RhinoMocks.3.6.1 │ ├── RhinoMocks.3.6.1.nupkg │ └── lib │ │ └── net │ │ ├── Rhino.Mocks.dll │ │ └── Rhino.Mocks.xml ├── SharpZipLib.0.86.0 │ ├── SharpZipLib.0.86.0.nupkg │ └── lib │ │ ├── 11 │ │ └── ICSharpCode.SharpZipLib.dll │ │ ├── 20 │ │ └── ICSharpCode.SharpZipLib.dll │ │ ├── SL3 │ │ └── SharpZipLib.Silverlight3.dll │ │ └── SL4 │ │ └── SharpZipLib.Silverlight4.dll ├── System.Collections.Immutable.1.1.36 │ ├── License-Stable.rtf │ ├── System.Collections.Immutable.1.1.36.nupkg │ └── lib │ │ └── portable-net45+win8+wp8+wpa81 │ │ ├── System.Collections.Immutable.dll │ │ └── System.Collections.Immutable.xml ├── VSSDK.DTE.7.0.4 │ ├── VSSDK.DTE.7.0.4.nupkg │ ├── lib │ │ └── net20 │ │ │ ├── EnvDTE.xml │ │ │ ├── envdte.dll │ │ │ └── stdole.dll │ └── tools │ │ └── install.ps1 ├── VSSDK.IDE.7.0.4 │ └── VSSDK.IDE.7.0.4.nupkg └── repositories.config └── src ├── .build ├── MSBuild.Community.Tasks.dll └── MSBuild.Community.Tasks.targets ├── .nuget └── packages.config ├── Build.proj ├── DnnPackager.Core ├── ConsoleLogger.cs ├── DnnPackager.Core.csproj ├── IBuildServer.cs ├── ILogger.cs ├── InstallTargetsHelper.cs ├── Properties │ └── AssemblyInfo.cs └── TeamCityBuildServer.cs ├── DnnPackager.CpsProjectSupport ├── CpsHelper.cs ├── DnnPackager.CpsProjectSupport.csproj ├── Properties │ └── AssemblyInfo.cs └── packages.config ├── DnnPackager.Tasks ├── AbstractTask.cs ├── CleanUp.cs ├── CreateDnnExtensionInstallationZip.cs ├── DnnPackager.Tasks.csproj ├── FindDnnManifestFile.cs ├── InstallTargetsHelper.cs ├── Properties │ └── AssemblyInfo.cs ├── ReadPackageInfoFromManifest.cs ├── TaskItemExtensions.cs └── packages.config ├── DnnPackager.TestModule ├── App_LocalResources │ ├── Resource1.RESX │ ├── Resource1.ascx.Designer.cs │ └── Resource1.ascx.resx ├── DnnPackageBuilderOverrides.props ├── DnnPackager.TestModule.csproj ├── IService1.cs ├── License.lic ├── Properties │ └── AssemblyInfo.cs ├── ReleaseNotes.txt ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── aaa.wsf ├── manifest.dnn ├── packages.config ├── somecontent │ ├── Default.ascx │ ├── Default.ascx.cs │ ├── Default.ascx.designer.cs │ ├── FontFace1.eot │ ├── Handler1.ashx │ ├── Handler1.ashx.cs │ ├── HtmPage1.htm │ ├── HtmlPage1.html │ ├── Image1.jpeg │ ├── Image1.jpg │ ├── JavaScript.js │ ├── MyGif.gif │ ├── Png1.png │ ├── Resource1.Designer.cs │ ├── Resource1.resx │ ├── Service1.svc │ ├── Service1.svc.cs │ ├── StyleSheet1.css │ ├── TrueTypeFont.ttf │ ├── ViewPage1.cshtml │ ├── WebForm1.aspx │ ├── WebForm1.aspx.cs │ ├── WebForm1.aspx.designer.cs │ ├── WebService1.asmx │ ├── WebService1.asmx.cs │ ├── XMLFile1.xml │ └── XSLTFile1.xslt └── somefolder │ ├── manifest.debug.dnn │ ├── manifest.debug.dnn5 │ ├── manifest.dnn │ └── manifest.dnn5 ├── DnnPackager.Tests ├── App_LocalResources │ ├── Default.ascx.Designer.cs │ └── Default.ascx.resx ├── CreateDnnExtensionInstallationZipTest.cs ├── DnnPackager.Tests.csproj ├── FindDnnManifestFileTest.cs ├── Properties │ └── AssemblyInfo.cs ├── ReadPackageInfoFromManifestTest.cs ├── SqlFiles │ └── InstallScript.sqldataprovider ├── TestPackageContent │ ├── Default.ascx │ ├── Default.ascx.cs │ ├── Default.ascx.designer.cs │ ├── Stylesheet1.css │ ├── TestTextFile1.txt │ └── WebService1.asmx ├── Util │ ├── MsBuildRunner.cs │ └── SilentProcessRunner.cs ├── manifest.debug.dnn ├── manifest.dnn └── packages.config ├── DnnPackager.nuspec ├── DnnPackager.sln ├── DnnPackager.suo ├── DnnPackager.v12.suo ├── DnnPackager ├── Command │ ├── BuildOptions.cs │ ├── CommandVisitor.cs │ ├── CommonOptions.cs │ ├── DeployOptions.cs │ ├── ICommandVisitor.cs │ ├── IVisitableOptions.cs │ ├── InstallTargetsToVSProjectFileOptions.cs │ ├── Options.cs │ └── VisitableCommandOptions.cs ├── DnnInstallHelper.cs ├── DnnPackager.csproj ├── DnnPackager.csproj.user ├── DotNetNukeWebAppInfo.cs ├── ExtendedWebClient.cs ├── MessageFilter.cs ├── ProcessExtensions.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── RunningObjectsTable.cs ├── content │ ├── DnnPackageBuilderOverrides.props │ ├── License.lic │ ├── ReleaseNotes.txt │ └── manifest.dnn.pp ├── old │ ├── DnnPackager.props.old │ ├── DnnPackager.targets.old │ ├── after.solutionname.sln.targets.old │ ├── before.solutionname.sln.targets.old │ ├── init.ps1.old │ └── rename.nuspecc ├── packages.config ├── readme.txt ├── tools │ ├── DnnPackageBuilderOverrides.props │ ├── ModuleDeployment.psm1 │ ├── Solution.nuspecc │ ├── after.solutionname.sln.targets │ ├── before.solutionname.sln.targets │ ├── dnnpackager.props │ ├── dnnpackager.targets │ ├── init.ps1 │ ├── install.ps1 │ └── uninstall.ps1 └── wip │ └── UserConfig.psm1 ├── PushNugetPackage.targets ├── nuget.config └── tools ├── Eula.txt └── Handle.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/.gitignore -------------------------------------------------------------------------------- /GitVersionConfig.yaml: -------------------------------------------------------------------------------- 1 | assembly-versioning-scheme: MajorMinorPatch 2 | branches: {} 3 | -------------------------------------------------------------------------------- /GitVersionConfig.yaml.txt: -------------------------------------------------------------------------------- 1 | assembly-versioning-scheme: MajorMinorPatch 2 | branches: {} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/README.md -------------------------------------------------------------------------------- /lib/CommandLineParser.1.9.71/CommandLineParser.1.9.71.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/CommandLineParser.1.9.71/CommandLineParser.1.9.71.nupkg -------------------------------------------------------------------------------- /lib/CommandLineParser.1.9.71/lib/net35/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/CommandLineParser.1.9.71/lib/net35/CommandLine.dll -------------------------------------------------------------------------------- /lib/CommandLineParser.1.9.71/lib/net35/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/CommandLineParser.1.9.71/lib/net35/CommandLine.xml -------------------------------------------------------------------------------- /lib/CommandLineParser.1.9.71/lib/net40/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/CommandLineParser.1.9.71/lib/net40/CommandLine.dll -------------------------------------------------------------------------------- /lib/CommandLineParser.1.9.71/lib/net40/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/CommandLineParser.1.9.71/lib/net40/CommandLine.xml -------------------------------------------------------------------------------- /lib/CommandLineParser.1.9.71/lib/net45/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/CommandLineParser.1.9.71/lib/net45/CommandLine.dll -------------------------------------------------------------------------------- /lib/CommandLineParser.1.9.71/lib/net45/CommandLine.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/CommandLineParser.1.9.71/lib/net45/CommandLine.xml -------------------------------------------------------------------------------- /lib/CommandLineParser.1.9.71/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/CommandLineParser.1.9.71/readme.txt -------------------------------------------------------------------------------- /lib/GitReleaseNotes.0.6.0/GitReleaseNotes.0.6.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GitReleaseNotes.0.6.0/GitReleaseNotes.0.6.0.nupkg -------------------------------------------------------------------------------- /lib/GitReleaseNotes.0.6.0/tools/GitReleaseNotes.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GitReleaseNotes.0.6.0/tools/GitReleaseNotes.exe -------------------------------------------------------------------------------- /lib/GitReleaseNotes.0.6.0/tools/GitReleaseNotes.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GitReleaseNotes.0.6.0/tools/GitReleaseNotes.pdb -------------------------------------------------------------------------------- /lib/GitReleaseNotes.0.6.0/tools/NativeBinaries/amd64/git2-4a30c53.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GitReleaseNotes.0.6.0/tools/NativeBinaries/amd64/git2-4a30c53.dll -------------------------------------------------------------------------------- /lib/GitReleaseNotes.0.6.0/tools/NativeBinaries/x86/git2-4a30c53.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GitReleaseNotes.0.6.0/tools/NativeBinaries/x86/git2-4a30c53.dll -------------------------------------------------------------------------------- /lib/GitVersion.CommandLine.2.0.1/GitVersion.CommandLine.2.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GitVersion.CommandLine.2.0.1/GitVersion.CommandLine.2.0.1.nupkg -------------------------------------------------------------------------------- /lib/GitVersion.CommandLine.2.0.1/Tools/GitVersion.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GitVersion.CommandLine.2.0.1/Tools/GitVersion.exe -------------------------------------------------------------------------------- /lib/GitVersion.CommandLine.2.0.1/Tools/GitVersion.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GitVersion.CommandLine.2.0.1/Tools/GitVersion.pdb -------------------------------------------------------------------------------- /lib/GitVersion.CommandLine.3.3.0/GitVersion.CommandLine.3.3.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GitVersion.CommandLine.3.3.0/GitVersion.CommandLine.3.3.0.nupkg -------------------------------------------------------------------------------- /lib/GitVersion.CommandLine.3.3.0/tools/GitVersion.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GitVersion.CommandLine.3.3.0/tools/GitVersion.exe -------------------------------------------------------------------------------- /lib/GitVersion.CommandLine.3.3.0/tools/GitVersion.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GitVersion.CommandLine.3.3.0/tools/GitVersion.pdb -------------------------------------------------------------------------------- /lib/GitVersion.CommandLine.3.3.0/tools/NativeBinaries/amd64/git2-e0902fb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GitVersion.CommandLine.3.3.0/tools/NativeBinaries/amd64/git2-e0902fb.dll -------------------------------------------------------------------------------- /lib/GitVersion.CommandLine.3.3.0/tools/NativeBinaries/x86/git2-e0902fb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GitVersion.CommandLine.3.3.0/tools/NativeBinaries/x86/git2-e0902fb.dll -------------------------------------------------------------------------------- /lib/GithubReleaseCreator.1.1.0/GithubReleaseCreator.1.1.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GithubReleaseCreator.1.1.0/GithubReleaseCreator.1.1.0.nupkg -------------------------------------------------------------------------------- /lib/GithubReleaseCreator.1.1.0/tools/CommandLine.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GithubReleaseCreator.1.1.0/tools/CommandLine.dll -------------------------------------------------------------------------------- /lib/GithubReleaseCreator.1.1.0/tools/GithubReleaseCreator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GithubReleaseCreator.1.1.0/tools/GithubReleaseCreator.exe -------------------------------------------------------------------------------- /lib/GithubReleaseCreator.1.1.0/tools/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GithubReleaseCreator.1.1.0/tools/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /lib/GithubReleaseCreator.1.1.0/tools/RestSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/GithubReleaseCreator.1.1.0/tools/RestSharp.dll -------------------------------------------------------------------------------- /lib/MSBuildTasks.1.4.0.61/MSBuildTasks.1.4.0.61.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/MSBuildTasks.1.4.0.61/MSBuildTasks.1.4.0.61.nupkg -------------------------------------------------------------------------------- /lib/MSBuildTasks.1.4.0.61/content/MSBuild.Community.Tasks.ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/MSBuildTasks.1.4.0.61/content/MSBuild.Community.Tasks.ReadMe.md -------------------------------------------------------------------------------- /lib/MSBuildTasks.1.4.0.61/tools/Build.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/MSBuildTasks.1.4.0.61/tools/Build.proj -------------------------------------------------------------------------------- /lib/MSBuildTasks.1.4.0.61/tools/Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/MSBuildTasks.1.4.0.61/tools/Install.ps1 -------------------------------------------------------------------------------- /lib/MSBuildTasks.1.4.0.61/tools/MSBuild.Community.Tasks.Targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/MSBuildTasks.1.4.0.61/tools/MSBuild.Community.Tasks.Targets -------------------------------------------------------------------------------- /lib/MSBuildTasks.1.4.0.61/tools/MSBuild.Community.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/MSBuildTasks.1.4.0.61/tools/MSBuild.Community.Tasks.dll -------------------------------------------------------------------------------- /lib/MSBuildTasks.1.4.0.61/tools/MSBuild.Community.Tasks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/MSBuildTasks.1.4.0.61/tools/MSBuild.Community.Tasks.xml -------------------------------------------------------------------------------- /lib/MSBuildTasks.1.4.0.61/tools/MSBuild.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/MSBuildTasks.1.4.0.61/tools/MSBuild.psm1 -------------------------------------------------------------------------------- /lib/Microsoft.Composition.1.0.27/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Composition.1.0.27/License-Stable.rtf -------------------------------------------------------------------------------- /lib/Microsoft.Composition.1.0.27/Microsoft.Composition.1.0.27.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Composition.1.0.27/Microsoft.Composition.1.0.27.nupkg -------------------------------------------------------------------------------- /lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.XML -------------------------------------------------------------------------------- /lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll -------------------------------------------------------------------------------- /lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll -------------------------------------------------------------------------------- /lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.xml -------------------------------------------------------------------------------- /lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.XML -------------------------------------------------------------------------------- /lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll -------------------------------------------------------------------------------- /lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.XML -------------------------------------------------------------------------------- /lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll -------------------------------------------------------------------------------- /lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.XML: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.XML -------------------------------------------------------------------------------- /lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Composition.1.0.27/lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll -------------------------------------------------------------------------------- /lib/Microsoft.Tpl.Dataflow.4.5.24/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Tpl.Dataflow.4.5.24/License-Stable.rtf -------------------------------------------------------------------------------- /lib/Microsoft.Tpl.Dataflow.4.5.24/Microsoft.Tpl.Dataflow.4.5.24.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Tpl.Dataflow.4.5.24/Microsoft.Tpl.Dataflow.4.5.24.nupkg -------------------------------------------------------------------------------- /lib/Microsoft.Tpl.Dataflow.4.5.24/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Tpl.Dataflow.4.5.24/lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Dataflow.dll -------------------------------------------------------------------------------- /lib/Microsoft.Tpl.Dataflow.4.5.24/lib/portable-net45+win8+wp8+wpa81/system.threading.tasks.dataflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Tpl.Dataflow.4.5.24/lib/portable-net45+win8+wp8+wpa81/system.threading.tasks.dataflow.xml -------------------------------------------------------------------------------- /lib/Microsoft.Tpl.Dataflow.4.5.24/lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Tpl.Dataflow.4.5.24/lib/portable-net45+win8+wpa81/System.Threading.Tasks.Dataflow.dll -------------------------------------------------------------------------------- /lib/Microsoft.Tpl.Dataflow.4.5.24/lib/portable-net45+win8+wpa81/system.threading.tasks.dataflow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Tpl.Dataflow.4.5.24/lib/portable-net45+win8+wpa81/system.threading.tasks.dataflow.xml -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Composition.14.0.50715-pre/Microsoft.VisualStudio.Composition.14.0.50715-pre.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Composition.14.0.50715-pre/Microsoft.VisualStudio.Composition.14.0.50715-pre.nupkg -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Composition.14.0.50715-pre/lib/net45/Microsoft.VisualStudio.Composition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Composition.14.0.50715-pre/lib/net45/Microsoft.VisualStudio.Composition.dll -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Composition.14.0.50715-pre/lib/net45/Microsoft.VisualStudio.Composition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Composition.14.0.50715-pre/lib/net45/Microsoft.VisualStudio.Composition.xml -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Composition.14.0.50715-pre/lib/net451/Microsoft.VisualStudio.Composition.Configuration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Composition.14.0.50715-pre/lib/net451/Microsoft.VisualStudio.Composition.Configuration.dll -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Composition.14.0.50715-pre/lib/net451/Microsoft.VisualStudio.Composition.Configuration.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Composition.14.0.50715-pre/lib/net451/Microsoft.VisualStudio.Composition.Configuration.xml -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Composition.14.0.50715-pre/lib/net451/Microsoft.VisualStudio.Composition.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Composition.14.0.50715-pre/lib/net451/Microsoft.VisualStudio.Composition.dll -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Composition.14.0.50715-pre/lib/net451/Microsoft.VisualStudio.Composition.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Composition.14.0.50715-pre/lib/net451/Microsoft.VisualStudio.Composition.xml -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre.nupkg -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.Interop.dll -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.Interop.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.Interop.xml -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.Utilities.v14.0.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.Utilities.v14.0.dll -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.Utilities.v14.0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.Utilities.v14.0.xml -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.V14Only.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.V14Only.dll -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.V14Only.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.V14Only.xml -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.VS.V14Only.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.VS.V14Only.dll -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.VS.V14Only.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.ProjectSystem.14.1.80-pre/lib/net451/Microsoft.VisualStudio.ProjectSystem.VS.V14Only.xml -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.SDK.VsixSuppression.14.0.50703/Microsoft.VisualStudio.SDK.VsixSuppression.14.0.50703.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.SDK.VsixSuppression.14.0.50703/Microsoft.VisualStudio.SDK.VsixSuppression.14.0.50703.nupkg -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.SDK.VsixSuppression.14.0.50703/build/Microsoft.VisualStudio.SDK.VsixSuppression.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.SDK.VsixSuppression.14.0.50703/build/Microsoft.VisualStudio.SDK.VsixSuppression.targets -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Threading.14.1.114/Microsoft.VisualStudio.Threading.14.1.114.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Threading.14.1.114/Microsoft.VisualStudio.Threading.14.1.114.nupkg -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Threading.14.1.114/lib/dotnet/Microsoft.VisualStudio.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Threading.14.1.114/lib/dotnet/Microsoft.VisualStudio.Threading.dll -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Threading.14.1.114/lib/dotnet/Microsoft.VisualStudio.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Threading.14.1.114/lib/dotnet/Microsoft.VisualStudio.Threading.xml -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Threading.14.1.114/lib/net45/Microsoft.VisualStudio.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Threading.14.1.114/lib/net45/Microsoft.VisualStudio.Threading.dll -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Threading.14.1.114/lib/net45/Microsoft.VisualStudio.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Threading.14.1.114/lib/net45/Microsoft.VisualStudio.Threading.xml -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Threading.14.1.114/lib/portable-net45+win+wpa81/Microsoft.VisualStudio.Threading.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Threading.14.1.114/lib/portable-net45+win+wpa81/Microsoft.VisualStudio.Threading.dll -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Threading.14.1.114/lib/portable-net45+win+wpa81/Microsoft.VisualStudio.Threading.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Threading.14.1.114/lib/portable-net45+win+wpa81/Microsoft.VisualStudio.Threading.xml -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Validation.14.1.111/Microsoft.VisualStudio.Validation.14.1.111.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Validation.14.1.111/Microsoft.VisualStudio.Validation.14.1.111.nupkg -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Validation.14.1.111/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Validation.14.1.111/README.txt -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Validation.14.1.111/lib/dotnet/Microsoft.VisualStudio.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Validation.14.1.111/lib/dotnet/Microsoft.VisualStudio.Validation.dll -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Validation.14.1.111/lib/dotnet/Microsoft.VisualStudio.Validation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Validation.14.1.111/lib/dotnet/Microsoft.VisualStudio.Validation.xml -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Validation.14.1.111/lib/net45/Microsoft.VisualStudio.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Validation.14.1.111/lib/net45/Microsoft.VisualStudio.Validation.dll -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Validation.14.1.111/lib/net45/Microsoft.VisualStudio.Validation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Validation.14.1.111/lib/net45/Microsoft.VisualStudio.Validation.xml -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Validation.14.1.111/lib/portable-net45+win+wpa81+wp80/Microsoft.VisualStudio.Validation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Validation.14.1.111/lib/portable-net45+win+wpa81+wp80/Microsoft.VisualStudio.Validation.dll -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Validation.14.1.111/lib/portable-net45+win+wpa81+wp80/Microsoft.VisualStudio.Validation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Validation.14.1.111/lib/portable-net45+win+wpa81+wp80/Microsoft.VisualStudio.Validation.xml -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Validation.14.1.111/tools/2013/RequiresNotNull.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Validation.14.1.111/tools/2013/RequiresNotNull.snippet -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Validation.14.1.111/tools/2013/RequiresNotNullOrEmpty.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Validation.14.1.111/tools/2013/RequiresNotNullOrEmpty.snippet -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Validation.14.1.111/tools/2015/RequiresNotNull.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Validation.14.1.111/tools/2015/RequiresNotNull.snippet -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Validation.14.1.111/tools/2015/RequiresNotNullOrEmpty.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Validation.14.1.111/tools/2015/RequiresNotNullOrEmpty.snippet -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Validation.14.1.111/tools/install-snippets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Validation.14.1.111/tools/install-snippets.cmd -------------------------------------------------------------------------------- /lib/Microsoft.VisualStudio.Validation.14.1.111/tools/uninstall-snippets.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.VisualStudio.Validation.14.1.111/tools/uninstall-snippets.cmd -------------------------------------------------------------------------------- /lib/Microsoft.Web.Administration.7.0.0.0/Microsoft.Web.Administration.7.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Web.Administration.7.0.0.0/Microsoft.Web.Administration.7.0.0.0.nupkg -------------------------------------------------------------------------------- /lib/Microsoft.Web.Administration.7.0.0.0/lib/net20/Microsoft.Web.Administration.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Web.Administration.7.0.0.0/lib/net20/Microsoft.Web.Administration.dll -------------------------------------------------------------------------------- /lib/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Web.Infrastructure.1.0.0.0/Microsoft.Web.Infrastructure.1.0.0.0.nupkg -------------------------------------------------------------------------------- /lib/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/Microsoft.Web.Infrastructure.1.0.0.0/lib/net40/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /lib/NUnit.2.6.4/NUnit.2.6.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/NUnit.2.6.4/NUnit.2.6.4.nupkg -------------------------------------------------------------------------------- /lib/NUnit.2.6.4/lib/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/NUnit.2.6.4/lib/nunit.framework.dll -------------------------------------------------------------------------------- /lib/NUnit.2.6.4/lib/nunit.framework.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/NUnit.2.6.4/lib/nunit.framework.xml -------------------------------------------------------------------------------- /lib/NUnit.2.6.4/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/NUnit.2.6.4/license.txt -------------------------------------------------------------------------------- /lib/NuGet.CommandLine.2.8.2/NuGet.CommandLine.2.8.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/NuGet.CommandLine.2.8.2/NuGet.CommandLine.2.8.2.nupkg -------------------------------------------------------------------------------- /lib/NuGet.CommandLine.2.8.2/tools/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/NuGet.CommandLine.2.8.2/tools/NuGet.exe -------------------------------------------------------------------------------- /lib/NuGet.CommandLine.2.8.3/NuGet.CommandLine.2.8.3.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/NuGet.CommandLine.2.8.3/NuGet.CommandLine.2.8.3.nupkg -------------------------------------------------------------------------------- /lib/NuGet.CommandLine.2.8.3/tools/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/NuGet.CommandLine.2.8.3/tools/NuGet.exe -------------------------------------------------------------------------------- /lib/NuGetPowerTools.0.29/NuGetPowerTools.0.29.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/NuGetPowerTools.0.29/NuGetPowerTools.0.29.nupkg -------------------------------------------------------------------------------- /lib/NuGetPowerTools.0.29/NuGetPowerTools.0.29.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/NuGetPowerTools.0.29/NuGetPowerTools.0.29.nuspec -------------------------------------------------------------------------------- /lib/NuGetPowerTools.0.29/tools/MSBuild.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/NuGetPowerTools.0.29/tools/MSBuild.psm1 -------------------------------------------------------------------------------- /lib/NuGetPowerTools.0.29/tools/NuGetMSBuild.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/NuGetPowerTools.0.29/tools/NuGetMSBuild.psm1 -------------------------------------------------------------------------------- /lib/NuGetPowerTools.0.29/tools/NuGetPowerTools.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/NuGetPowerTools.0.29/tools/NuGetPowerTools.psd1 -------------------------------------------------------------------------------- /lib/NuGetPowerTools.0.29/tools/NuGetPowerTools.psm1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/NuGetPowerTools.0.29/tools/VS.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/NuGetPowerTools.0.29/tools/VS.psm1 -------------------------------------------------------------------------------- /lib/NuGetPowerTools.0.29/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/NuGetPowerTools.0.29/tools/init.ps1 -------------------------------------------------------------------------------- /lib/RhinoMocks.3.6.1/RhinoMocks.3.6.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/RhinoMocks.3.6.1/RhinoMocks.3.6.1.nupkg -------------------------------------------------------------------------------- /lib/RhinoMocks.3.6.1/lib/net/Rhino.Mocks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/RhinoMocks.3.6.1/lib/net/Rhino.Mocks.dll -------------------------------------------------------------------------------- /lib/RhinoMocks.3.6.1/lib/net/Rhino.Mocks.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/RhinoMocks.3.6.1/lib/net/Rhino.Mocks.xml -------------------------------------------------------------------------------- /lib/SharpZipLib.0.86.0/SharpZipLib.0.86.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/SharpZipLib.0.86.0/SharpZipLib.0.86.0.nupkg -------------------------------------------------------------------------------- /lib/SharpZipLib.0.86.0/lib/11/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/SharpZipLib.0.86.0/lib/11/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /lib/SharpZipLib.0.86.0/lib/20/ICSharpCode.SharpZipLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/SharpZipLib.0.86.0/lib/20/ICSharpCode.SharpZipLib.dll -------------------------------------------------------------------------------- /lib/SharpZipLib.0.86.0/lib/SL3/SharpZipLib.Silverlight3.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/SharpZipLib.0.86.0/lib/SL3/SharpZipLib.Silverlight3.dll -------------------------------------------------------------------------------- /lib/SharpZipLib.0.86.0/lib/SL4/SharpZipLib.Silverlight4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/SharpZipLib.0.86.0/lib/SL4/SharpZipLib.Silverlight4.dll -------------------------------------------------------------------------------- /lib/System.Collections.Immutable.1.1.36/License-Stable.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/System.Collections.Immutable.1.1.36/License-Stable.rtf -------------------------------------------------------------------------------- /lib/System.Collections.Immutable.1.1.36/System.Collections.Immutable.1.1.36.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/System.Collections.Immutable.1.1.36/System.Collections.Immutable.1.1.36.nupkg -------------------------------------------------------------------------------- /lib/System.Collections.Immutable.1.1.36/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/System.Collections.Immutable.1.1.36/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /lib/System.Collections.Immutable.1.1.36/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/System.Collections.Immutable.1.1.36/lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml -------------------------------------------------------------------------------- /lib/VSSDK.DTE.7.0.4/VSSDK.DTE.7.0.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/VSSDK.DTE.7.0.4/VSSDK.DTE.7.0.4.nupkg -------------------------------------------------------------------------------- /lib/VSSDK.DTE.7.0.4/lib/net20/EnvDTE.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/VSSDK.DTE.7.0.4/lib/net20/EnvDTE.xml -------------------------------------------------------------------------------- /lib/VSSDK.DTE.7.0.4/lib/net20/envdte.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/VSSDK.DTE.7.0.4/lib/net20/envdte.dll -------------------------------------------------------------------------------- /lib/VSSDK.DTE.7.0.4/lib/net20/stdole.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/VSSDK.DTE.7.0.4/lib/net20/stdole.dll -------------------------------------------------------------------------------- /lib/VSSDK.DTE.7.0.4/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/VSSDK.DTE.7.0.4/tools/install.ps1 -------------------------------------------------------------------------------- /lib/VSSDK.IDE.7.0.4/VSSDK.IDE.7.0.4.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/VSSDK.IDE.7.0.4/VSSDK.IDE.7.0.4.nupkg -------------------------------------------------------------------------------- /lib/repositories.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/lib/repositories.config -------------------------------------------------------------------------------- /src/.build/MSBuild.Community.Tasks.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/.build/MSBuild.Community.Tasks.dll -------------------------------------------------------------------------------- /src/.build/MSBuild.Community.Tasks.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/.build/MSBuild.Community.Tasks.targets -------------------------------------------------------------------------------- /src/.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/.nuget/packages.config -------------------------------------------------------------------------------- /src/Build.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/Build.proj -------------------------------------------------------------------------------- /src/DnnPackager.Core/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Core/ConsoleLogger.cs -------------------------------------------------------------------------------- /src/DnnPackager.Core/DnnPackager.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Core/DnnPackager.Core.csproj -------------------------------------------------------------------------------- /src/DnnPackager.Core/IBuildServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Core/IBuildServer.cs -------------------------------------------------------------------------------- /src/DnnPackager.Core/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Core/ILogger.cs -------------------------------------------------------------------------------- /src/DnnPackager.Core/InstallTargetsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Core/InstallTargetsHelper.cs -------------------------------------------------------------------------------- /src/DnnPackager.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DnnPackager.Core/TeamCityBuildServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Core/TeamCityBuildServer.cs -------------------------------------------------------------------------------- /src/DnnPackager.CpsProjectSupport/CpsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.CpsProjectSupport/CpsHelper.cs -------------------------------------------------------------------------------- /src/DnnPackager.CpsProjectSupport/DnnPackager.CpsProjectSupport.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.CpsProjectSupport/DnnPackager.CpsProjectSupport.csproj -------------------------------------------------------------------------------- /src/DnnPackager.CpsProjectSupport/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.CpsProjectSupport/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DnnPackager.CpsProjectSupport/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.CpsProjectSupport/packages.config -------------------------------------------------------------------------------- /src/DnnPackager.Tasks/AbstractTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tasks/AbstractTask.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tasks/CleanUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tasks/CleanUp.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tasks/CreateDnnExtensionInstallationZip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tasks/CreateDnnExtensionInstallationZip.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tasks/DnnPackager.Tasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tasks/DnnPackager.Tasks.csproj -------------------------------------------------------------------------------- /src/DnnPackager.Tasks/FindDnnManifestFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tasks/FindDnnManifestFile.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tasks/InstallTargetsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tasks/InstallTargetsHelper.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tasks/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tasks/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tasks/ReadPackageInfoFromManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tasks/ReadPackageInfoFromManifest.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tasks/TaskItemExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tasks/TaskItemExtensions.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tasks/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tasks/packages.config -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/App_LocalResources/Resource1.RESX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/App_LocalResources/Resource1.RESX -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/App_LocalResources/Resource1.ascx.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/App_LocalResources/Resource1.ascx.Designer.cs -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/App_LocalResources/Resource1.ascx.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/App_LocalResources/Resource1.ascx.resx -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/DnnPackageBuilderOverrides.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/DnnPackageBuilderOverrides.props -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/DnnPackager.TestModule.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/DnnPackager.TestModule.csproj -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/IService1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/IService1.cs -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/License.lic: -------------------------------------------------------------------------------- 1 | test licence -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/ReleaseNotes.txt: -------------------------------------------------------------------------------- 1 | test notes -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/Web.Debug.config -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/Web.Release.config -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/Web.config -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/aaa.wsf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/aaa.wsf -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/manifest.dnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/manifest.dnn -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/packages.config -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/Default.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/Default.ascx -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/Default.ascx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/Default.ascx.cs -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/Default.ascx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/Default.ascx.designer.cs -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/FontFace1.eot: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/Handler1.ashx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/Handler1.ashx -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/Handler1.ashx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/Handler1.ashx.cs -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/HtmPage1.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/HtmPage1.htm -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/HtmlPage1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/HtmlPage1.html -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/Image1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/Image1.jpeg -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/Image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/Image1.jpg -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/JavaScript.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/MyGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/MyGif.gif -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/Png1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/Png1.png -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/Resource1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/Resource1.Designer.cs -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/Resource1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/Resource1.resx -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/Service1.svc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/Service1.svc -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/Service1.svc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/Service1.svc.cs -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/StyleSheet1.css: -------------------------------------------------------------------------------- 1 | body { 2 | } 3 | -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/TrueTypeFont.ttf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/ViewPage1.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/ViewPage1.cshtml -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/WebForm1.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/WebForm1.aspx -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/WebForm1.aspx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/WebForm1.aspx.cs -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/WebForm1.aspx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/WebForm1.aspx.designer.cs -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/WebService1.asmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/WebService1.asmx -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/WebService1.asmx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/WebService1.asmx.cs -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/XMLFile1.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somecontent/XSLTFile1.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somecontent/XSLTFile1.xslt -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somefolder/manifest.debug.dnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somefolder/manifest.debug.dnn -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somefolder/manifest.debug.dnn5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somefolder/manifest.debug.dnn5 -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somefolder/manifest.dnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somefolder/manifest.dnn -------------------------------------------------------------------------------- /src/DnnPackager.TestModule/somefolder/manifest.dnn5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.TestModule/somefolder/manifest.dnn5 -------------------------------------------------------------------------------- /src/DnnPackager.Tests/App_LocalResources/Default.ascx.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/App_LocalResources/Default.ascx.Designer.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tests/App_LocalResources/Default.ascx.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/App_LocalResources/Default.ascx.resx -------------------------------------------------------------------------------- /src/DnnPackager.Tests/CreateDnnExtensionInstallationZipTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/CreateDnnExtensionInstallationZipTest.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tests/DnnPackager.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/DnnPackager.Tests.csproj -------------------------------------------------------------------------------- /src/DnnPackager.Tests/FindDnnManifestFileTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/FindDnnManifestFileTest.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tests/ReadPackageInfoFromManifestTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/ReadPackageInfoFromManifestTest.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tests/SqlFiles/InstallScript.sqldataprovider: -------------------------------------------------------------------------------- 1 | CREATE TABLE MyModule 2 | ( 3 | Id int Primary Key Identity(1), 4 | Name nvarchar(50) null 5 | ) -------------------------------------------------------------------------------- /src/DnnPackager.Tests/TestPackageContent/Default.ascx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/TestPackageContent/Default.ascx -------------------------------------------------------------------------------- /src/DnnPackager.Tests/TestPackageContent/Default.ascx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/TestPackageContent/Default.ascx.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tests/TestPackageContent/Default.ascx.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/TestPackageContent/Default.ascx.designer.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tests/TestPackageContent/Stylesheet1.css: -------------------------------------------------------------------------------- 1 | body 2 | { 3 | } -------------------------------------------------------------------------------- /src/DnnPackager.Tests/TestPackageContent/TestTextFile1.txt: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /src/DnnPackager.Tests/TestPackageContent/WebService1.asmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/TestPackageContent/WebService1.asmx -------------------------------------------------------------------------------- /src/DnnPackager.Tests/Util/MsBuildRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/Util/MsBuildRunner.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tests/Util/SilentProcessRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/Util/SilentProcessRunner.cs -------------------------------------------------------------------------------- /src/DnnPackager.Tests/manifest.debug.dnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/manifest.debug.dnn -------------------------------------------------------------------------------- /src/DnnPackager.Tests/manifest.dnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/manifest.dnn -------------------------------------------------------------------------------- /src/DnnPackager.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.Tests/packages.config -------------------------------------------------------------------------------- /src/DnnPackager.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.nuspec -------------------------------------------------------------------------------- /src/DnnPackager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.sln -------------------------------------------------------------------------------- /src/DnnPackager.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.suo -------------------------------------------------------------------------------- /src/DnnPackager.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager.v12.suo -------------------------------------------------------------------------------- /src/DnnPackager/Command/BuildOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/Command/BuildOptions.cs -------------------------------------------------------------------------------- /src/DnnPackager/Command/CommandVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/Command/CommandVisitor.cs -------------------------------------------------------------------------------- /src/DnnPackager/Command/CommonOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/Command/CommonOptions.cs -------------------------------------------------------------------------------- /src/DnnPackager/Command/DeployOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/Command/DeployOptions.cs -------------------------------------------------------------------------------- /src/DnnPackager/Command/ICommandVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/Command/ICommandVisitor.cs -------------------------------------------------------------------------------- /src/DnnPackager/Command/IVisitableOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/Command/IVisitableOptions.cs -------------------------------------------------------------------------------- /src/DnnPackager/Command/InstallTargetsToVSProjectFileOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/Command/InstallTargetsToVSProjectFileOptions.cs -------------------------------------------------------------------------------- /src/DnnPackager/Command/Options.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/Command/Options.cs -------------------------------------------------------------------------------- /src/DnnPackager/Command/VisitableCommandOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/Command/VisitableCommandOptions.cs -------------------------------------------------------------------------------- /src/DnnPackager/DnnInstallHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/DnnInstallHelper.cs -------------------------------------------------------------------------------- /src/DnnPackager/DnnPackager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/DnnPackager.csproj -------------------------------------------------------------------------------- /src/DnnPackager/DnnPackager.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/DnnPackager.csproj.user -------------------------------------------------------------------------------- /src/DnnPackager/DotNetNukeWebAppInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/DotNetNukeWebAppInfo.cs -------------------------------------------------------------------------------- /src/DnnPackager/ExtendedWebClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/ExtendedWebClient.cs -------------------------------------------------------------------------------- /src/DnnPackager/MessageFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/MessageFilter.cs -------------------------------------------------------------------------------- /src/DnnPackager/ProcessExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/ProcessExtensions.cs -------------------------------------------------------------------------------- /src/DnnPackager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/Program.cs -------------------------------------------------------------------------------- /src/DnnPackager/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DnnPackager/RunningObjectsTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/RunningObjectsTable.cs -------------------------------------------------------------------------------- /src/DnnPackager/content/DnnPackageBuilderOverrides.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/content/DnnPackageBuilderOverrides.props -------------------------------------------------------------------------------- /src/DnnPackager/content/License.lic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/content/License.lic -------------------------------------------------------------------------------- /src/DnnPackager/content/ReleaseNotes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/content/ReleaseNotes.txt -------------------------------------------------------------------------------- /src/DnnPackager/content/manifest.dnn.pp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/content/manifest.dnn.pp -------------------------------------------------------------------------------- /src/DnnPackager/old/DnnPackager.props.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/old/DnnPackager.props.old -------------------------------------------------------------------------------- /src/DnnPackager/old/DnnPackager.targets.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/old/DnnPackager.targets.old -------------------------------------------------------------------------------- /src/DnnPackager/old/after.solutionname.sln.targets.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/old/after.solutionname.sln.targets.old -------------------------------------------------------------------------------- /src/DnnPackager/old/before.solutionname.sln.targets.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/old/before.solutionname.sln.targets.old -------------------------------------------------------------------------------- /src/DnnPackager/old/init.ps1.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/old/init.ps1.old -------------------------------------------------------------------------------- /src/DnnPackager/old/rename.nuspecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/old/rename.nuspecc -------------------------------------------------------------------------------- /src/DnnPackager/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/packages.config -------------------------------------------------------------------------------- /src/DnnPackager/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/readme.txt -------------------------------------------------------------------------------- /src/DnnPackager/tools/DnnPackageBuilderOverrides.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/tools/DnnPackageBuilderOverrides.props -------------------------------------------------------------------------------- /src/DnnPackager/tools/ModuleDeployment.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/tools/ModuleDeployment.psm1 -------------------------------------------------------------------------------- /src/DnnPackager/tools/Solution.nuspecc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/tools/Solution.nuspecc -------------------------------------------------------------------------------- /src/DnnPackager/tools/after.solutionname.sln.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/tools/after.solutionname.sln.targets -------------------------------------------------------------------------------- /src/DnnPackager/tools/before.solutionname.sln.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/tools/before.solutionname.sln.targets -------------------------------------------------------------------------------- /src/DnnPackager/tools/dnnpackager.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/tools/dnnpackager.props -------------------------------------------------------------------------------- /src/DnnPackager/tools/dnnpackager.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/tools/dnnpackager.targets -------------------------------------------------------------------------------- /src/DnnPackager/tools/init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/tools/init.ps1 -------------------------------------------------------------------------------- /src/DnnPackager/tools/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/tools/install.ps1 -------------------------------------------------------------------------------- /src/DnnPackager/tools/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/tools/uninstall.ps1 -------------------------------------------------------------------------------- /src/DnnPackager/wip/UserConfig.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/DnnPackager/wip/UserConfig.psm1 -------------------------------------------------------------------------------- /src/PushNugetPackage.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/PushNugetPackage.targets -------------------------------------------------------------------------------- /src/nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/nuget.config -------------------------------------------------------------------------------- /src/tools/Eula.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/tools/Eula.txt -------------------------------------------------------------------------------- /src/tools/Handle.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dazinator/DnnPackager/HEAD/src/tools/Handle.exe --------------------------------------------------------------------------------