Skip to content

Commit 878fec2

Browse files
committed
Created release build and bumped to version 2.3.11
1 parent 8068734 commit 878fec2

9 files changed

Lines changed: 56 additions & 43 deletions

File tree

AdminLTE Preview.png

11.3 KB
Loading

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ The AdminLTE Template is a ready-to-go template for constructing high-quality AS
55
This template aims to make development faster and easier since the basic structure of all the dependencies is already defined.
66

77
[AdminLTE](https://github.com/almasaeed2010/AdminLTE) was created and is maintained by [Abdullah Almsaeed](https://almsaeedstudio.com/).
8-
8+
9+
## Versioning
10+
The version of the template going forward will follow the AdminLTE version number. That means version 2.3.8 of this plugin template directly correlates to version 2.3.8 of AdminLTE.
11+
912
## Included Dependencies
1013
| NAME | VERSION | REPO |
1114
| :--- | :---: | :---: |

src/AdminLTE Template Installer/AdminLTE Template Installer.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<Compile Include="Properties\AssemblyInfo.cs" />
4646
</ItemGroup>
4747
<ItemGroup>
48-
<Content Include="ProjectTemplates\AdminLTE Template.zip">
48+
<Content Include="ProjectTemplates\Web\AdminLTE Template.zip">
4949
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
5050
<IncludeInVSIX>true</IncludeInVSIX>
5151
</Content>

src/AdminLTE Template Installer/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Connor O'Shea
3+
Copyright (c) 2017 Connor O'Shea
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal
Binary file not shown.
Binary file not shown.

src/AdminLTE Template Installer/source.extension.vsixmanifest

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="TemplatePackage.Connor O'Shea.945572d8-ea94-41dd-99f9-bfe94e941972" Version="1.2" Language="en-US" Publisher="Connor O'Shea" />
4+
<Identity Id="TemplatePackage.Connor O'Shea.945572d8-ea94-41dd-99f9-bfe94e941972" Version="2.3.11" Language="en-US" Publisher="Connor O'Shea" />
55
<DisplayName>AdminLTE Template</DisplayName>
66
<Description xml:space="preserve">A C# ASP.NET MVC Project Template for Visual Studio using the popular AdminLTE Bootstrap Template by Abdullah Almsaeed.</Description>
77
<MoreInfo>https://github.com/c0shea/AdminLTE-Template</MoreInfo>
@@ -11,7 +11,9 @@
1111
<Tags>AdminLTE, Bootstrap, C#, MVC, ASP.NET</Tags>
1212
</Metadata>
1313
<Installation>
14-
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[14.0]" />
14+
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[11.0,15.0)" />
15+
<InstallationTarget Id="Microsoft.VisualStudio.Ultimate" Version="[11.0,15.0)" />
16+
<InstallationTarget Id="Microsoft.VisualStudio.Community" Version="[14.0,]" />
1517
</Installation>
1618
<Dependencies>
1719
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.6,)" />

src/AdminLTE Template/AdminLTE Template.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414
<OutputType>Library</OutputType>
1515
<AppDesignerFolder>Properties</AppDesignerFolder>
1616
<RootNamespace>AdminLTE_Template</RootNamespace>
17-
<AssemblyName>AdminLTE Template</AssemblyName>
18-
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
17+
<AssemblyName>AdminLTE_Template</AssemblyName>
18+
<TargetFrameworkVersion>v4.6.2</TargetFrameworkVersion>
1919
<UseIISExpress>false</UseIISExpress>
2020
<IISExpressSSLPort />
2121
<IISExpressAnonymousAuthentication />

src/AdminLTE Template/Web.config

Lines changed: 44 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,71 +1,79 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0"?>
22
<!--
33
For more information on how to configure your ASP.NET application, please visit
44
http://go.microsoft.com/fwlink/?LinkId=301880
55
-->
66
<configuration>
77
<configSections>
8-
<section name="routeJs" type="RouteJs.RouteJsConfigurationSection, RouteJs" />
8+
<section name="routeJs" type="RouteJs.RouteJsConfigurationSection, RouteJs"/>
99
</configSections>
1010
<appSettings>
11-
<add key="webpages:Version" value="3.0.0.0" />
12-
<add key="webpages:Enabled" value="false" />
13-
<add key="ClientValidationEnabled" value="true" />
14-
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
11+
<add key="webpages:Version" value="3.0.0.0"/>
12+
<add key="webpages:Enabled" value="false"/>
13+
<add key="ClientValidationEnabled" value="true"/>
14+
<add key="UnobtrusiveJavaScriptEnabled" value="true"/>
1515
</appSettings>
16+
<!--
17+
For a description of web.config changes see http://go.microsoft.com/fwlink/?LinkId=235367.
18+
19+
The following attributes can be set on the <httpRuntime> tag.
20+
<system.Web>
21+
<httpRuntime targetFramework="4.6.2" />
22+
</system.Web>
23+
-->
1624
<system.web>
17-
<compilation debug="true" targetFramework="4.6.2" />
18-
<httpRuntime targetFramework="4.6.2" />
25+
<compilation debug="true" targetFramework="4.6.2"/>
26+
<httpRuntime targetFramework="$targetframeworkversion$"/>
1927
</system.web>
2028
<runtime>
2129
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
2230
<dependentAssembly>
23-
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35" />
24-
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
31+
<assemblyIdentity name="System.Web.Helpers" publicKeyToken="31bf3856ad364e35"/>
32+
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
2533
</dependentAssembly>
2634
<dependentAssembly>
27-
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35" />
28-
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0" />
35+
<assemblyIdentity name="System.Web.WebPages" publicKeyToken="31bf3856ad364e35"/>
36+
<bindingRedirect oldVersion="1.0.0.0-3.0.0.0" newVersion="3.0.0.0"/>
2937
</dependentAssembly>
3038
<dependentAssembly>
31-
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
32-
<bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0" />
39+
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35"/>
40+
<bindingRedirect oldVersion="0.0.0.0-5.2.3.0" newVersion="5.2.3.0"/>
3341
</dependentAssembly>
3442
<dependentAssembly>
35-
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" culture="neutral" />
36-
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2" />
43+
<assemblyIdentity name="Antlr3.Runtime" publicKeyToken="eb42632606e9261f" culture="neutral"/>
44+
<bindingRedirect oldVersion="0.0.0.0-3.5.0.2" newVersion="3.5.0.2"/>
3745
</dependentAssembly>
3846
<dependentAssembly>
39-
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
40-
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0" />
47+
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral"/>
48+
<bindingRedirect oldVersion="0.0.0.0-9.0.0.0" newVersion="9.0.0.0"/>
4149
</dependentAssembly>
4250
<dependentAssembly>
43-
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" culture="neutral" />
44-
<bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930" />
51+
<assemblyIdentity name="WebGrease" publicKeyToken="31bf3856ad364e35" culture="neutral"/>
52+
<bindingRedirect oldVersion="0.0.0.0-1.6.5135.21930" newVersion="1.6.5135.21930"/>
4553
</dependentAssembly>
4654
</assemblyBinding>
4755
</runtime>
4856
<system.webServer>
4957
<handlers>
50-
<remove name="RouteJs" />
51-
<add name="RouteJs" verb="GET" path="routejs.axd" type="RouteJs.RouteJsHandler, RouteJs" preCondition="integratedMode" />
58+
<remove name="RouteJs"/>
59+
<add name="RouteJs" verb="GET" path="routejs.axd" type="RouteJs.RouteJsHandler, RouteJs" preCondition="integratedMode"/>
5260
</handlers>
5361
</system.webServer>
5462
<!--
55-
exposeAllRoutes: Sets whether to expose all routes to the site.
56-
If true, all routes will be exposed unless explicitly hidden using the [HideRoutesInJavaScript]
57-
attribute on the controller. If false, all routes will be hidden unless explicitly exposed
58-
using the [ExposeRoutesInJavaScript] attribute.
63+
exposeAllRoutes: Sets whether to expose all routes to the site.
64+
If true, all routes will be exposed unless explicitly hidden using the [HideRoutesInJavaScript]
65+
attribute on the controller. If false, all routes will be hidden unless explicitly exposed
66+
using the [ExposeRoutesInJavaScript] attribute.
5967
60-
lowerCaseUrls: Sets whether urls should be converted to lowercase.
61-
If true, urls will be converted to lowercase while preserving route value placeholders.
62-
Example: "Posts/{postKey}/Edit" -> "posts/{postKey}/edit"
63-
-->
64-
<routeJs exposeAllRoutes="true" lowerCaseUrls="false" />
68+
lowerCaseUrls: Sets whether urls should be converted to lowercase.
69+
If true, urls will be converted to lowercase while preserving route value placeholders.
70+
Example: "Posts/{postKey}/Edit" -> "posts/{postKey}/edit"
71+
-->
72+
<routeJs exposeAllRoutes="true" lowerCaseUrls="false"/>
6573
<system.codedom>
66-
<compilers>
67-
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" />
68-
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+" />
69-
</compilers>
74+
<compilers>
75+
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701"/>
76+
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.3.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\&quot;Web\&quot; /optionInfer+"/>
77+
</compilers>
7078
</system.codedom>
71-
</configuration>
79+
</configuration>

0 commit comments

Comments
 (0)