Skip to content

Commit 69a92d6

Browse files
committed
Merge pull request #2 from mbaneryd/cms9
Updated the add-on to support CMS 9
2 parents 8c4aec1 + fa057aa commit 69a92d6

File tree

13 files changed

+158
-129
lines changed

13 files changed

+158
-129
lines changed

DeveloperTools.sln

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
3-
# Visual Studio 2012
4-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DeveloperTools", "DeveloperTools\DeveloperTools.csproj", "{CC833335-20F0-4559-8160-EE6BC0EF9112}"
5-
EndProject
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.23107.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{6C682E10-C007-4377-9E2D-467B9189B8C3}"
77
ProjectSection(SolutionItems) = preProject
88
.nuget\NuGet.Config = .nuget\NuGet.Config
99
.nuget\NuGet.exe = .nuget\NuGet.exe
1010
.nuget\NuGet.targets = .nuget\NuGet.targets
1111
EndProjectSection
1212
EndProject
13+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DeveloperTools", "DeveloperTools\DeveloperTools.csproj", "{CC833335-20F0-4559-8160-EE6BC0EF9112}"
14+
EndProject
1315
Global
1416
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1517
Debug|Any CPU = Debug|Any CPU

DeveloperTools/Controllers/IOCController.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ public ActionResult Index()
2626
{
2727
try
2828
{
29-
Type defaultType = plugin.Default != null ? plugin.Default.ConcreteType : null;
29+
Type defaultType = plugin.Default != null ? plugin.Default.ReturnedType : null;
3030
if (plugin.Default != null && defaultType == null)
3131
{
3232
defaultType = container.GetInstance(plugin.Default.PluginType, plugin.Default.Name).GetType();
3333
}
3434

3535
foreach (var entry in plugin.Instances.Where(i => i != null))
3636
{
37-
Type concreteType = entry.ConcreteType;
37+
Type concreteType = entry.ReturnedType;
3838
if (concreteType == null && entry.PluginType.ContainsGenericParameters == false)
3939
{
4040
concreteType = container.GetInstance(entry.PluginType, entry.Name).GetType();
@@ -44,7 +44,7 @@ public ActionResult Index()
4444
{
4545
PluginType = entry.PluginType == null ? "null" : entry.PluginType.FullName + "," + entry.PluginType.Assembly.FullName,
4646
ConcreteType = concreteType == null ? "null" : concreteType.FullName + "," + concreteType.Assembly.FullName,
47-
Scope = plugin.Lifecycle,
47+
Scope = plugin.Lifecycle.ToString(),
4848
IsDefault = defaultType == concreteType
4949
});
5050
}

DeveloperTools/DeveloperTools.csproj

Lines changed: 75 additions & 50 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -11,9 +11,9 @@
1111
<ProjectTypeGuids>{E3E379DF-F4C6-4180-9B81-6769533ABE47};{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
1212
<OutputType>Library</OutputType>
1313
<AppDesignerFolder>Properties</AppDesignerFolder>
14-
<RootNamespace>DeveloperTools</RootNamespace>
15-
<AssemblyName>DeveloperTools</AssemblyName>
16-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
14+
<RootNamespace>EPiServer.DeveloperTools</RootNamespace>
15+
<AssemblyName>EPiServer.DeveloperTools</AssemblyName>
16+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1717
<MvcBuildViews>false</MvcBuildViews>
1818
<UseIISExpress>false</UseIISExpress>
1919
<SccProjectName>SAK</SccProjectName>
@@ -31,6 +31,9 @@
3131
<IISExpressUseClassicPipelineMode />
3232
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
3333
<RestorePackages>true</RestorePackages>
34+
<MvcProjectUpgradeChecked>true</MvcProjectUpgradeChecked>
35+
<TargetFrameworkProfile />
36+
<UseGlobalApplicationHostFile />
3437
</PropertyGroup>
3538
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
3639
<DebugSymbols>true</DebugSymbols>
@@ -40,6 +43,8 @@
4043
<DefineConstants>DEBUG;TRACE</DefineConstants>
4144
<ErrorReport>prompt</ErrorReport>
4245
<WarningLevel>4</WarningLevel>
46+
<Prefer32Bit>false</Prefer32Bit>
47+
<UseVSHostingProcess>false</UseVSHostingProcess>
4348
</PropertyGroup>
4449
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
4550
<DebugType>pdbonly</DebugType>
@@ -48,6 +53,7 @@
4853
<DefineConstants>TRACE</DefineConstants>
4954
<ErrorReport>prompt</ErrorReport>
5055
<WarningLevel>4</WarningLevel>
56+
<Prefer32Bit>false</Prefer32Bit>
5157
</PropertyGroup>
5258
<ItemGroup>
5359
<Reference Include="Castle.Core">
@@ -56,76 +62,94 @@
5662
<Reference Include="Castle.Windsor">
5763
<HintPath>..\packages\Castle.Windsor.3.2.1\lib\net40\Castle.Windsor.dll</HintPath>
5864
</Reference>
59-
<Reference Include="EPiServer">
60-
<HintPath>..\packages\EPiServer.CMS.Core.7.5.394.2\lib\net40\EPiServer.dll</HintPath>
61-
</Reference>
62-
<Reference Include="EPiServer.ApplicationModules">
63-
<HintPath>..\packages\EPiServer.Framework.7.5.394.2\lib\net40\EPiServer.ApplicationModules.dll</HintPath>
64-
</Reference>
65-
<Reference Include="EPiServer.BaseLibrary">
66-
<HintPath>..\packages\EPiServer.CMS.Core.7.5.394.2\lib\net40\EPiServer.BaseLibrary.dll</HintPath>
67-
</Reference>
68-
<Reference Include="EPiServer.Configuration">
69-
<HintPath>..\packages\EPiServer.CMS.Core.7.5.394.2\lib\net40\EPiServer.Configuration.dll</HintPath>
65+
<Reference Include="EPiServer, Version=9.3.0.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7, processorArchitecture=MSIL">
66+
<HintPath>..\packages\EPiServer.CMS.Core.9.3.0\lib\net45\EPiServer.dll</HintPath>
67+
<Private>True</Private>
7068
</Reference>
71-
<Reference Include="EPiServer.Data">
72-
<HintPath>..\packages\EPiServer.Framework.7.5.394.2\lib\net40\EPiServer.Data.dll</HintPath>
69+
<Reference Include="EPiServer.ApplicationModules, Version=9.3.0.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7, processorArchitecture=MSIL">
70+
<HintPath>..\packages\EPiServer.Framework.9.3.0\lib\net45\EPiServer.ApplicationModules.dll</HintPath>
71+
<Private>True</Private>
7372
</Reference>
74-
<Reference Include="EPiServer.Data.Cache">
75-
<HintPath>..\packages\EPiServer.Framework.7.5.394.2\lib\net40\EPiServer.Data.Cache.dll</HintPath>
73+
<Reference Include="EPiServer.Configuration, Version=9.3.0.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7, processorArchitecture=MSIL">
74+
<HintPath>..\packages\EPiServer.CMS.Core.9.3.0\lib\net45\EPiServer.Configuration.dll</HintPath>
75+
<Private>True</Private>
7676
</Reference>
77-
<Reference Include="EPiServer.Enterprise">
78-
<HintPath>..\packages\EPiServer.CMS.Core.7.5.394.2\lib\net40\EPiServer.Enterprise.dll</HintPath>
77+
<Reference Include="EPiServer.Data, Version=9.3.0.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7, processorArchitecture=MSIL">
78+
<HintPath>..\packages\EPiServer.Framework.9.3.0\lib\net45\EPiServer.Data.dll</HintPath>
79+
<Private>True</Private>
7980
</Reference>
80-
<Reference Include="EPiServer.Events">
81-
<HintPath>..\packages\EPiServer.Framework.7.5.394.2\lib\net40\EPiServer.Events.dll</HintPath>
81+
<Reference Include="EPiServer.Data.Cache, Version=9.3.0.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7, processorArchitecture=MSIL">
82+
<HintPath>..\packages\EPiServer.Framework.9.3.0\lib\net45\EPiServer.Data.Cache.dll</HintPath>
83+
<Private>True</Private>
8284
</Reference>
83-
<Reference Include="EPiServer.Framework">
84-
<HintPath>..\packages\EPiServer.Framework.7.5.394.2\lib\net40\EPiServer.Framework.dll</HintPath>
85+
<Reference Include="EPiServer.Enterprise, Version=9.3.0.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7, processorArchitecture=MSIL">
86+
<HintPath>..\packages\EPiServer.CMS.Core.9.3.0\lib\net45\EPiServer.Enterprise.dll</HintPath>
87+
<Private>True</Private>
8588
</Reference>
86-
<Reference Include="EPiServer.ImageLibrary">
87-
<HintPath>..\packages\EPiServer.CMS.Core.7.5.394.2\lib\net40\EPiServer.ImageLibrary.dll</HintPath>
89+
<Reference Include="EPiServer.Events, Version=9.3.0.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7, processorArchitecture=MSIL">
90+
<HintPath>..\packages\EPiServer.Framework.9.3.0\lib\net45\EPiServer.Events.dll</HintPath>
91+
<Private>True</Private>
8892
</Reference>
89-
<Reference Include="EPiServer.Implementation">
90-
<HintPath>..\packages\EPiServer.CMS.Core.7.5.394.2\lib\net40\EPiServer.Implementation.dll</HintPath>
93+
<Reference Include="EPiServer.Framework, Version=9.3.0.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7, processorArchitecture=MSIL">
94+
<HintPath>..\packages\EPiServer.Framework.9.3.0\lib\net45\EPiServer.Framework.dll</HintPath>
95+
<Private>True</Private>
9196
</Reference>
92-
<Reference Include="EPiServer.Licensing">
93-
<HintPath>..\packages\EPiServer.Framework.7.5.394.2\lib\net40\EPiServer.Licensing.dll</HintPath>
97+
<Reference Include="EPiServer.ImageLibrary, Version=9.3.0.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7, processorArchitecture=MSIL">
98+
<HintPath>..\packages\EPiServer.CMS.Core.9.3.0\lib\net45\EPiServer.ImageLibrary.dll</HintPath>
99+
<Private>True</Private>
94100
</Reference>
95-
<Reference Include="EPiServer.LinkAnalyzer">
96-
<HintPath>..\packages\EPiServer.CMS.Core.7.5.394.2\lib\net40\EPiServer.LinkAnalyzer.dll</HintPath>
101+
<Reference Include="EPiServer.Licensing, Version=9.3.0.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7, processorArchitecture=MSIL">
102+
<HintPath>..\packages\EPiServer.Framework.9.3.0\lib\net45\EPiServer.Licensing.dll</HintPath>
103+
<Private>True</Private>
97104
</Reference>
98-
<Reference Include="EPiServer.Shell">
99-
<HintPath>..\packages\EPiServer.Framework.7.5.394.2\lib\net40\EPiServer.Shell.dll</HintPath>
105+
<Reference Include="EPiServer.LinkAnalyzer, Version=9.3.0.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7, processorArchitecture=MSIL">
106+
<HintPath>..\packages\EPiServer.CMS.Core.9.3.0\lib\net45\EPiServer.LinkAnalyzer.dll</HintPath>
107+
<Private>True</Private>
100108
</Reference>
101-
<Reference Include="EPiServer.Web.WebControls">
102-
<HintPath>..\packages\EPiServer.CMS.Core.7.5.394.2\lib\net40\EPiServer.Web.WebControls.dll</HintPath>
109+
<Reference Include="EPiServer.Shell, Version=9.3.0.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7, processorArchitecture=MSIL">
110+
<HintPath>..\packages\EPiServer.Framework.9.3.0\lib\net45\EPiServer.Shell.dll</HintPath>
111+
<Private>True</Private>
103112
</Reference>
104-
<Reference Include="EPiServer.WorkflowFoundation">
105-
<HintPath>..\packages\EPiServer.CMS.Core.7.5.394.2\lib\net40\EPiServer.WorkflowFoundation.dll</HintPath>
113+
<Reference Include="EPiServer.Web.WebControls, Version=9.3.0.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7, processorArchitecture=MSIL">
114+
<HintPath>..\packages\EPiServer.CMS.Core.9.3.0\lib\net45\EPiServer.Web.WebControls.dll</HintPath>
115+
<Private>True</Private>
106116
</Reference>
107-
<Reference Include="EPiServer.XForms">
108-
<HintPath>..\packages\EPiServer.CMS.Core.7.5.394.2\lib\net40\EPiServer.XForms.dll</HintPath>
117+
<Reference Include="EPiServer.XForms, Version=9.3.0.0, Culture=neutral, PublicKeyToken=8fe83dea738b45b7, processorArchitecture=MSIL">
118+
<HintPath>..\packages\EPiServer.CMS.Core.9.3.0\lib\net45\EPiServer.XForms.dll</HintPath>
119+
<Private>True</Private>
109120
</Reference>
110-
<Reference Include="log4net, Version=1.2.10.0, Culture=neutral, PublicKeyToken=1b44e1d426115821, processorArchitecture=MSIL">
121+
<Reference Include="log4net, Version=1.2.13.0, Culture=neutral, PublicKeyToken=669e0ddf0bb1aa2a, processorArchitecture=MSIL">
122+
<HintPath>..\packages\log4net.2.0.3\lib\net40-full\log4net.dll</HintPath>
111123
<Private>True</Private>
112-
<HintPath>..\packages\log4net.1.2.10\lib\2.0\log4net.dll</HintPath>
113124
</Reference>
114125
<Reference Include="Microsoft.CSharp" />
115126
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
116127
<Private>True</Private>
117128
<HintPath>..\packages\Microsoft.Web.Infrastructure.1.0.0.0\lib\net40\Microsoft.Web.Infrastructure.dll</HintPath>
118129
</Reference>
119-
<Reference Include="Newtonsoft.Json">
120-
<HintPath>..\packages\Newtonsoft.Json.5.0.8\lib\net40\Newtonsoft.Json.dll</HintPath>
130+
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
131+
<HintPath>..\packages\Newtonsoft.Json.6.0.8\lib\net45\Newtonsoft.Json.dll</HintPath>
132+
<Private>True</Private>
133+
</Reference>
134+
<Reference Include="StructureMap, Version=3.1.6.186, Culture=neutral, PublicKeyToken=e60ad81abae3c223, processorArchitecture=MSIL">
135+
<HintPath>..\packages\structuremap-signed.3.1.6.186\lib\net40\StructureMap.dll</HintPath>
136+
<Private>True</Private>
137+
</Reference>
138+
<Reference Include="StructureMap.Net4, Version=3.1.6.186, Culture=neutral, processorArchitecture=MSIL">
139+
<HintPath>..\packages\structuremap-signed.3.1.6.186\lib\net40\StructureMap.Net4.dll</HintPath>
140+
<Private>True</Private>
121141
</Reference>
122-
<Reference Include="StructureMap, Version=2.6.4.0, Culture=neutral, PublicKeyToken=e60ad81abae3c223, processorArchitecture=MSIL">
123-
<SpecificVersion>False</SpecificVersion>
124-
<HintPath>..\packages\structuremap.2.6.4.1\lib\net40\StructureMap.dll</HintPath>
142+
<Reference Include="StructureMap.Web, Version=1.0.0.0, Culture=neutral, PublicKeyToken=e60ad81abae3c223, processorArchitecture=MSIL">
143+
<HintPath>..\packages\structuremap.web-signed.3.1.6.186\lib\net40\StructureMap.Web.dll</HintPath>
144+
<Private>True</Private>
125145
</Reference>
126146
<Reference Include="System" />
127-
<Reference Include="System.Core" />
147+
<Reference Include="System.Data.DataSetExtensions" />
128148
<Reference Include="System.Web" />
149+
<Reference Include="System.Web.ApplicationServices" />
150+
<Reference Include="System.Web.DynamicData" />
151+
<Reference Include="System.Web.Entity" />
152+
<Reference Include="System.Web.Extensions" />
129153
<Reference Include="System.Web.Helpers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
130154
<Private>True</Private>
131155
<HintPath>..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.Helpers.dll</HintPath>
@@ -150,9 +174,9 @@
150174
<Private>True</Private>
151175
<HintPath>..\packages\Microsoft.AspNet.WebPages.2.0.20710.0\lib\net40\System.Web.WebPages.Razor.dll</HintPath>
152176
</Reference>
153-
<Reference Include="System.Xml.Linq" />
154177
<Reference Include="System.Xml" />
155178
<Reference Include="System.Configuration" />
179+
<Reference Include="System.Xml.Linq" />
156180
</ItemGroup>
157181
<ItemGroup>
158182
<Compile Include="Controllers\ContentTypeAnalyzerController.cs" />
@@ -200,6 +224,7 @@
200224
</Content>
201225
<Content Include="Views\Shared\DeveloperTools.Master" />
202226
<Content Include="Web.config" />
227+
<Content Include="module.config" />
203228
<None Include="Web.Debug.config">
204229
<DependentUpon>Web.config</DependentUpon>
205230
</None>

DeveloperTools/DeveloperTools.nuspec

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
33
<metadata>
44
<id>EPiServer.DeveloperTools</id>
5-
<version>1.1.0</version>
5+
<version>1.1.1</version>
66
<title>EPiServer Developer Tools</title>
77
<authors>EPiServer</authors>
88
<owners />
@@ -11,22 +11,24 @@
1111
<description>Allows to run various support tools on the site.</description>
1212
<tags>EPiServerModulePackage</tags>
1313
<dependencies>
14-
<dependency id="EPiServer" version="7.5" />
14+
<dependency id="EPiServer.CMS.Core" version="[9.0.0, 10.0.0)" />
15+
<dependency id="EPiServer.Framework" version="[9.0.0, 10.0.0)" />
16+
<dependency id="log4net" version="[2.0.3, 3.0.0)"/>
1517
</dependencies>
1618
</metadata>
1719
<files>
18-
<file src="bin\DeveloperTools.dll" target="lib\DeveloperTools.dll" />
19-
<file src="Views\web.config" target="content\Views\web.config" />
20-
<file src="Views\Shared\DeveloperTools.master" target="content\Views\Shared\DeveloperTools.master" />
21-
<file src="Views\IOC\Index.aspx" target="content\Views\IOC\Index.aspx" />
22-
<file src="Views\TimeMeters\Index.aspx" target="content\Views\TimeMeters\Index.aspx" />
23-
<file src="Views\RemoteEvent\Index.aspx" target="content\Views\RemoteEvent\Index.aspx" />
24-
<file src="Views\LoadedAssemblies\Index.aspx" target="content\Views\LoadedAssemblies\Index.aspx" />
25-
<file src="Views\RevertToDefault\Index.aspx" target="content\Views\RevertToDefault\Index.aspx" />
26-
<file src="Views\ContentTypeAnalyzer\Index.aspx" target="content\Views\ContentTypeAnalyzer\Index.aspx" />
27-
<file src="Views\LogViewer\Show.aspx" target="content\Views\LogViewer\Show.aspx" />
28-
<file src="Views\Templates\Index.aspx" target="content\Views\Templates\Index.aspx" />
29-
<file src="Views\MemoryDump\Index.aspx" target="content\Views\MemoryDump\Index.aspx" />
30-
<file src="Views\Routes\Index.aspx" target="content\Views\Routes\Index.aspx" />
20+
<file src="bin\EPiServer.DeveloperTools.dll" target="lib\net45\" />
21+
<file src="module.config" target="content\modules\_protected\EPiServer.DeveloperTools\module.config"/>
22+
<file src="Views\Shared\DeveloperTools.master" target="content\modules\_protected\EPiServer.DeveloperTools\Views\Shared\DeveloperTools.master" />
23+
<file src="Views\IOC\Index.aspx" target="content\modules\_protected\EPiServer.DeveloperTools\Views\IOC\Index.aspx" />
24+
<file src="Views\TimeMeters\Index.aspx" target="content\modules\_protected\EPiServer.DeveloperTools\Views\TimeMeters\Index.aspx" />
25+
<file src="Views\RemoteEvent\Index.aspx" target="content\modules\_protected\EPiServer.DeveloperTools\Views\RemoteEvent\Index.aspx" />
26+
<file src="Views\LoadedAssemblies\Index.aspx" target="content\modules\_protected\EPiServer.DeveloperTools\Views\LoadedAssemblies\Index.aspx" />
27+
<file src="Views\RevertToDefault\Index.aspx" target="content\modules\_protected\EPiServer.DeveloperTools\Views\RevertToDefault\Index.aspx" />
28+
<file src="Views\ContentTypeAnalyzer\Index.aspx" target="content\modules\_protected\EPiServer.DeveloperTools\Views\ContentTypeAnalyzer\Index.aspx" />
29+
<file src="Views\LogViewer\Show.aspx" target="content\modules\_protected\EPiServer.DeveloperTools\Views\LogViewer\Show.aspx" />
30+
<file src="Views\Templates\Index.aspx" target="content\modules\_protected\EPiServer.DeveloperTools\Views\Templates\Index.aspx" />
31+
<file src="Views\MemoryDump\Index.aspx" target="content\modules\_protected\EPiServer.DeveloperTools\Views\MemoryDump\Index.aspx" />
32+
<file src="Views\Routes\Index.aspx" target="content\modules\_protected\EPiServer.DeveloperTools\Views\Routes\Index.aspx" />
3133
</files>
3234
</package>

DeveloperTools/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@
3131
//
3232
// You can specify all the values or you can default the Revision and Build Numbers
3333
// by using the '*' as shown below:
34-
[assembly: AssemblyVersion("1.0.0.0")]
35-
[assembly: AssemblyFileVersion("1.0.0.0")]
34+
[assembly: AssemblyVersion("1.0.1.0")]
35+
[assembly: AssemblyFileVersion("1.0.1.0")]

DeveloperTools/Views/IOC/Index.aspx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<DeveloperTools.Models.IOCModel>" MasterPageFile="../Shared/DeveloperTools.Master" %>
3-
<%@ Assembly Name="DeveloperTools" %>
3+
<%@ Assembly Name="EPiServer.DeveloperTools" %>
44
<%@ Import Namespace="DeveloperTools.Models" %>
55
<%@ Import Namespace="EPiServer.Shell.Web.Mvc.Html" %>
66

DeveloperTools/Views/LoadedAssemblies/Index.aspx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<%@ Page Language="C#" Inherits="System.Web.Mvc.ViewPage<DeveloperTools.Models.AssembliesModel>" MasterPageFile="../Shared/DeveloperTools.Master" %>
22

3-
<%@ Assembly Name="DeveloperTools" %>
3+
<%@ Assembly Name="EPiServer.DeveloperTools" %>
44
<%@ Import Namespace="DeveloperTools.Models" %>
55
<%@ Import Namespace="EPiServer.Shell.Web.Mvc.Html" %>
66
<%@ Import Namespace="System.Reflection" %>

0 commit comments

Comments
 (0)