Skip to content

Commit

Permalink
v1.1.0 compiled against .Net v4.7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
leedavi committed Nov 2, 2020
1 parent a3b2a44 commit e1909df
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 13 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@ obj/
.vs/config/applicationhost.config
bin/
packages/
Installation/NBrightBuyDepot_1.1.0.0_Install.zip
Installation/NBrightBuyDepot_Resource.zip
2 changes: 1 addition & 1 deletion Componants/Interfaces/Filter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ namespace Nevoweb.DNN.NBrightBuy.Providers.NBrightBuyDepot
{
public class Filter : Components.Interfaces.FilterInterface
{
public override string GetFilter(string currentFilter, NavigationData navigationData, ModSettings setting, HttpContext context)
public override string GetFilter(string currentFilter, NavigationData navigationData, ModSettings setting, NBrightInfo ajaxInfo)
{
throw new NotImplementedException();
}
Expand Down
2 changes: 1 addition & 1 deletion Installation/NBrightBuyDepot.dnn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<dotnetnuke type="Package" version="5.0">
<packages>
<package name="NBrightBuyDepot" type="Module" version="1.0.1">
<package name="NBrightBuyDepot" type="Module" version="1.1.0">
<friendlyName>NBrightBuyDepot</friendlyName>
<description>NBrightBuyDepot: Depot Admin for NBS</description>
<iconFile />
Expand Down
Binary file removed Installation/NBrightBuyDepot_1.0.1.0_Install.zip
Binary file not shown.
Binary file removed Installation/NBrightBuyDepot_Resource.zip
Binary file not shown.
9 changes: 4 additions & 5 deletions NBrightBuyDepot.csproj
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{3F96B553-3FDE-4F11-B7AD-E6D45A755327}</ProjectGuid>
<ProjectGuid>{EAC28619-5E23-4D38-9070-F24A24DAD906}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>NBrightBuyDepot</RootNamespace>
<AssemblyName>NBrightBuyDepot</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
Expand Down Expand Up @@ -49,9 +49,8 @@
<Reference Include="NBrightDNN">
<HintPath>..\..\..\bin\NBrightDNN.dll</HintPath>
</Reference>
<Reference Include="RazorEngine, Version=3.7.7.0, Culture=neutral, PublicKeyToken=9ee697374c7e744a, processorArchitecture=MSIL">
<Reference Include="RazorEngine">
<HintPath>..\..\..\bin\RazorEngine.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
4 changes: 2 additions & 2 deletions Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.1.0")]
[assembly: AssemblyFileVersion("1.0.1.0")]
[assembly: AssemblyVersion("1.1.0.0")]
[assembly: AssemblyFileVersion("1.1.0.0")]
8 changes: 4 additions & 4 deletions app.config
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="RazorEngine" publicKeyToken="9ee697374c7e744a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-3.7.7.0" newVersion="3.7.7.0" />
<assemblyIdentity name="RazorEngine" publicKeyToken="9ee697374c7e744a" culture="neutral"/>
<bindingRedirect oldVersion="0.0.0.0-3.7.7.0" newVersion="3.7.7.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.7.2"/></startup></configuration>

0 comments on commit e1909df

Please sign in to comment.