Skip to content

Commit

Permalink
#77 - Removed DnnPackager.exe, solution now only contains msbuild tasks.
Browse files Browse the repository at this point in the history
Vs Integration will be moved to a companion project "DnnVsDebugger"
  • Loading branch information
dazinator committed Feb 10, 2018
1 parent b3f89f8 commit e67c660
Show file tree
Hide file tree
Showing 38 changed files with 40 additions and 2,017 deletions.
35 changes: 35 additions & 0 deletions dnnvsdebugger/dnnvsdebugger.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Do not remove this test for UTF-8: if “Ω” doesn’t appear as greek uppercase omega letter enclosed in quotation marks, you should use an editor that supports UTF-8, not this one. -->
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<!-- Read this before publishing packages to chocolatey.org: https://github.com/chocolatey/chocolatey/wiki/CreatePackages -->
<id>dnnvsdebugger</id>
<title>dnnvsdebugger (Install)</title>
<version>$version$</version>
<authors>Darrell Tunnell</authors>
<owners>Darrell Tunnell</owners>
<summary>A tool to provide debugging support for Dnn developers using Visual Studio</summary>
<description>## Streamline DNN module development from Visual Studio
</description>
<projectUrl>https://github.com/dazinator/DnnPackager</projectUrl>

<!--<projectSourceUrl></projectSourceUrl>
<docsUrl></docsUrl>
<mailingListUrl></mailingListUrl>
<bugTrackerUrl></bugTrackerUrl>-->
<tags>dnnvsdebugger Dnn DotNetNuke DnnPackager</tags>
<copyright>Dazinate Ltd 2018</copyright>
<licenseUrl>https://github.com/dazinator/DnnPackager</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<!--<iconUrl>http://cdn.rawgit.com/__REPLACE_YOUR_REPO__/master/icons/dnnvsdebugger.png</iconUrl>-->
<!--<dependencies>
<dependency id="" version="__VERSION__" />
<dependency id="" />
</dependencies>-->
<releaseNotes></releaseNotes>
<!--<provides></provides>-->
</metadata>
<files>
<file src="tools\**" target="tools" />
</files>
</package>
File renamed without changes.
83 changes: 0 additions & 83 deletions src/DnnPackager.Tasks/PrepareDnnPackagerExe.cs

This file was deleted.

File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@
<DnnPackagerTasksPath Condition="'$(DnnPackagerTasksPath)' == '' AND '$(MSBuildThisFileDirectory)' == '' "></DnnPackagerTasksPath>
<DnnPackagerTasksPath Condition="'$(DnnPackagerTasksPath)' == '' AND '$(MSBuildThisFileDirectory)' != '' ">$(MSBuildThisFileDirectory)..\tools\</DnnPackagerTasksPath>
<DnnPackagerTasksLib>$(DnnPackagerTasksPath)DnnPackager.Tasks.dll</DnnPackagerTasksLib>
<DnnPackagerExe Condition="'$(DnnPackagerExe)' == '' AND '$(MSBuildThisFileDirectory)' != '' ">$(MSBuildThisFileDirectory)..\tools\DnnPackager.exe</DnnPackagerExe>
<IntermediateOutputPath Condition="'$(IntermediateOutputPath)'==''">$(BaseIntermediateOutputPath)></IntermediateOutputPath>
<DnnPackagerIncludeAssembliesInInstallZip Condition="'$(DnnPackagerIncludeAssembliesInInstallZip)'==''">true</DnnPackagerIncludeAssembliesInInstallZip>
<DnnPackagerIncludeSymbolsInInstallZip Condition="'$(DnnPackagerIncludeSymbolsInInstallZip)'==''">$(DebugSymbols)</DnnPackagerIncludeSymbolsInInstallZip>
Expand All @@ -15,15 +14,13 @@
<UsingTask TaskName="DnnPackager.Tasks.ReadPackageInfoFromManifest" AssemblyFile="$(DnnPackagerTasksLib)" />
<UsingTask TaskName="DnnPackager.Tasks.CreateDnnExtensionInstallationZip" AssemblyFile="$(DnnPackagerTasksLib)" />
<UsingTask TaskName="DnnPackager.Tasks.CleanUp" AssemblyFile="$(DnnPackagerTasksLib)" />
<UsingTask TaskName="DnnPackager.Tasks.PrepareDnnPackagerExe" AssemblyFile="$(DnnPackagerTasksLib)" />

<!-- Hook into the PreBuild, AfterBuild, and AfterClean -->
<PropertyGroup>
<BuildDependsOn>
DnnPackagerPreBuild;
$(BuildDependsOn);
DnnPackagerBuildInstallZip;
DnnPackagerPrepareExe
</BuildDependsOn>
<CleanDependsOn>
$(CleanDependsOn);
Expand Down Expand Up @@ -183,19 +180,7 @@
<Message Text="DnnPackager: Built dnn sources zip file: @(DnnSourcesZipFile)" Importance="high" />

</Target>

<Target Name="DnnPackagerPrepareExe" DependsOnTargets="DnnPackagerBuildInstallZip">

<Message Text="DnnPackager: Preparing the DnnPackager.Exe in intermediate output directory, which can be used via startup arguments to support debugging.." Importance="high"/>

<PrepareDnnPackagerExe
Configuration="$(Configuration)"
ProjectDirectory="$(MSBuildProjectDirectory)"
IntermediateOutputPath="$(IntermediateOutputPath)"
DnnPackagerExeInstallLocation="$(DnnPackagerExe)">
</PrepareDnnPackagerExe>

</Target>


<!--
Prints out some info useful when debugging.
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
11 changes: 4 additions & 7 deletions src/DnnPackager.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,11 @@
</releaseNotes>
</metadata>
<files>
<file src="DnnPackager\tools\**\*.*" target="tools" />
<file src="DnnPackager.Tasks\bin\$Configuration$\net40\DnnPackager.Tasks.dll" target="tools" />
<file src="DnnPackager.Core\bin\$Configuration$\net40\DnnPackager.Core.dll" target="tools" />
<file src="DnnPackager.Tasks\bin\$Configuration$\net40\DnnPackager.Core.dll" target="tools" />
<file src="DnnPackager.Tasks\bin\$Configuration$\net40\ICSharpCode.SharpZipLib.dll" target="tools" />
<file src="DnnPackager\build\**\*.*" target="build" />
<file src="DnnPackager\content\**\*.*" target="content" />
<file src="DnnPackager\readme.txt" target="" />
<file src="DnnPackager\bin\$Configuration$\net46\DnnPackager.exe" target="tools" />
<file src="DnnPackager\bin\$Configuration$\net46\Dazinate.Dnn.Cli.dll" target="tools" />
<file src="DnnPackager.Tasks\build\**\*.*" target="build" />
<file src="DnnPackager.Tasks\content\**\*.*" target="content" />
<file src="DnnPackager.Tasks\readme.txt" target="" />
</files>
</package>
8 changes: 0 additions & 8 deletions src/DnnPackager.sln
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
DnnPackager.nuspec = DnnPackager.nuspec
EndProjectSection
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DnnPackager", "DnnPackager\DnnPackager.csproj", "{7C591E2E-3161-4DAA-9A13-535139AD50AD}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DnnPackager.Tasks", "DnnPackager.Tasks\DnnPackager.Tasks.csproj", "{3ED717E9-3938-4834-8126-FC02E6617289}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "DnnPackager.Tests", "DnnPackager.Tests\DnnPackager.Tests.csproj", "{BA5F315E-63A5-41FF-ADB1-4F1E375EA9D8}"
Expand All @@ -24,12 +22,6 @@ Global
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{7C591E2E-3161-4DAA-9A13-535139AD50AD}.Client|Any CPU.ActiveCfg = Client|Any CPU
{7C591E2E-3161-4DAA-9A13-535139AD50AD}.Client|Any CPU.Build.0 = Client|Any CPU
{7C591E2E-3161-4DAA-9A13-535139AD50AD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{7C591E2E-3161-4DAA-9A13-535139AD50AD}.Debug|Any CPU.Build.0 = Debug|Any CPU
{7C591E2E-3161-4DAA-9A13-535139AD50AD}.Release|Any CPU.ActiveCfg = Release|Any CPU
{7C591E2E-3161-4DAA-9A13-535139AD50AD}.Release|Any CPU.Build.0 = Release|Any CPU
{3ED717E9-3938-4834-8126-FC02E6617289}.Client|Any CPU.ActiveCfg = Client|Any CPU
{3ED717E9-3938-4834-8126-FC02E6617289}.Client|Any CPU.Build.0 = Client|Any CPU
{3ED717E9-3938-4834-8126-FC02E6617289}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
Expand Down
32 changes: 0 additions & 32 deletions src/DnnPackager/Command/BuildProjectOptions.cs

This file was deleted.

Loading

0 comments on commit e67c660

Please sign in to comment.