Skip to content

Commit

Permalink
Version 5.0.0
Browse files Browse the repository at this point in the history
## Version 5.0.0 - October 31, 2019

  - **Added:** .NET Standard 2.0 DLL/nuget target is now available. This DLL can be used with ASP.NET Core 2.0+ web applications
    and .NET Core 2.0+ console/desktop applications. This means you can now use it with "ASP.NET Core on .NET Core" projects in
    addition to "ASP.NET Core on .NET Framework" which was already supported.
    Note that with this initial release, document format support on .NET Core is limited, however we plan to port remaining formats
    rapidly from .NET Framework version. Please see below link for a complete list of currently supported formats on .NET Core
    https://docs.gleamtech.com/documentultimate/html/supported-formats-netcore.htm

  - **Added:** Example project AspNetCoreCS in addition to AspNetCoreOnNetFullCS.

  - **Changed:** License keys are changed so please go to https://www.gleamtech.com/upgrade and acquire a new license key
    if you want to use this version (or higher). If your one year maintenance has not ended, you will receive a new free
    license key on the same page.
  • Loading branch information
GleamTech committed Oct 31, 2019
1 parent 1731ea2 commit 61ab650
Show file tree
Hide file tree
Showing 324 changed files with 2,282 additions and 486 deletions.
34 changes: 0 additions & 34 deletions Examples/AspNetCore.CS/AspNetCore.CS.csproj

This file was deleted.

25 changes: 25 additions & 0 deletions Examples/AspNetCoreCS.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.9.28307.812
MinimumVisualStudioVersion = 15.0.26730.3
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspNetCoreCS", "AspNetCoreCS\AspNetCoreCS.csproj", "{FDA0E92D-1D0D-4EC2-AA71-7D9D037A7C01}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{FDA0E92D-1D0D-4EC2-AA71-7D9D037A7C01}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{FDA0E92D-1D0D-4EC2-AA71-7D9D037A7C01}.Debug|Any CPU.Build.0 = Debug|Any CPU
{FDA0E92D-1D0D-4EC2-AA71-7D9D037A7C01}.Release|Any CPU.ActiveCfg = Release|Any CPU
{FDA0E92D-1D0D-4EC2-AA71-7D9D037A7C01}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {7C9C2EE7-00E5-4E2D-8AF2-B134E683EC2E}
EndGlobalSection
EndGlobal
33 changes: 33 additions & 0 deletions Examples/AspNetCoreCS/AspNetCoreCS.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<AssemblyName>GleamTech.DocumentUltimateExamples.AspNetCoreCS</AssemblyName>
<RootNamespace>GleamTech.DocumentUltimateExamples.AspNetCoreCS</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.0.9" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="GleamTech.Core" Version="4.0.0" />
<PackageReference Include="DocumentUltimate" Version="5.0.0" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="System.Drawing.Common">
<Version>4.5.1</Version>
</PackageReference>
</ItemGroup>

<ItemGroup>
<_CustomFiles Include="Controllers\**\*" />
<_CustomFiles Include="Views\**\*" />
<_CustomFiles Include="Descriptions\**\*" />
<DotnetPublishFiles Include="@(_CustomFiles)">
<DestinationRelativePath>%(Identity)</DestinationRelativePath>
</DotnetPublishFiles>
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@
using System.IO;
using GleamTech.AspNet;
using GleamTech.DocumentUltimate;
using GleamTech.DocumentUltimateExamples.AspNetCore.CS.Models;
using GleamTech.DocumentUltimateExamples.AspNetCoreCS.Models;
using GleamTech.Examples;
using GleamTech.IO;
using GleamTech.Zip;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Rendering;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS.Controllers
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS.Controllers
{
public partial class DocumentConverterController
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
using System.Collections.Specialized;
using GleamTech.AspNet;
using GleamTech.DocumentUltimate;
using GleamTech.DocumentUltimateExamples.AspNetCore.CS.Models;
using GleamTech.DocumentUltimateExamples.AspNetCoreCS.Models;
using GleamTech.Examples;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Rendering;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS.Controllers
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS.Controllers
{
public partial class DocumentConverterController
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Mvc;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS.Controllers
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS.Controllers
{
public partial class DocumentConverterController : Controller
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using GleamTech.Examples;
using Microsoft.AspNetCore.Mvc;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS.Controllers
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS.Controllers
{
public partial class DocumentViewerController
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using GleamTech.DocumentUltimate.AspNet.UI;
using Microsoft.AspNetCore.Mvc;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS.Controllers
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS.Controllers
{
public partial class DocumentViewerController
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using GleamTech.Examples;
using Microsoft.AspNetCore.Mvc;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS.Controllers
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS.Controllers
{
public partial class DocumentViewerController
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using GleamTech.DocumentUltimate.AspNet.UI;
using Microsoft.AspNetCore.Mvc;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS.Controllers
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS.Controllers
{
public partial class DocumentViewerController
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
using GleamTech.DocumentUltimate.AspNet.UI;
using Microsoft.AspNetCore.Mvc;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS.Controllers
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS.Controllers
{
public partial class DocumentViewerController
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using GleamTech.DocumentUltimate.AspNet.UI;
using Microsoft.AspNetCore.Mvc;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS.Controllers
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS.Controllers
{
public partial class DocumentViewerController
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using GleamTech.DocumentUltimate.AspNet.UI;
using Microsoft.AspNetCore.Mvc;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS.Controllers
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS.Controllers
{
public partial class DocumentViewerController
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
using GleamTech.DocumentUltimate.AspNet.UI;
using Microsoft.AspNetCore.Mvc;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS.Controllers
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS.Controllers
{
public partial class DocumentViewerController
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Mvc;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS.Controllers
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS.Controllers
{
public partial class DocumentViewerController : Controller
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Microsoft.AspNetCore.Mvc;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS.Controllers
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS.Controllers
{
public partial class HomeController : Controller
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
using GleamTech.Examples;
using Microsoft.AspNetCore.Mvc.Rendering;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS.Models
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS.Models
{
public class OverviewViewModel
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc.Rendering;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS.Models
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS.Models
{
public class PossibleViewModel
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
using Microsoft.AspNetCore;
using Microsoft.AspNetCore.Hosting;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS
{
public class Program
{
Expand Down
27 changes: 27 additions & 0 deletions Examples/AspNetCoreCS/Properties/launchSettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
"iisSettings": {
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:65302/",
"sslPort": 0
}
},
"profiles": {
"IIS Express": {
"commandName": "IISExpress",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
},
"AspNetCoreCS": {
"commandName": "Project",
"launchBrowser": true,
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "http://localhost:54486/"
}
}
}
Original file line number Diff line number Diff line change
@@ -1,23 +1,15 @@
using System.IO;
using GleamTech.AspNet;
using GleamTech.AspNet.Core;
using GleamTech.DocumentUltimate;
using Microsoft.AspNetCore.Builder;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.Configuration;
using Microsoft.Extensions.DependencyInjection;
using GleamTech.AspNet;
using GleamTech.AspNet.Core;
using GleamTech.DocumentUltimate;

namespace GleamTech.DocumentUltimateExamples.AspNetCore.CS
namespace GleamTech.DocumentUltimateExamples.AspNetCoreCS
{
public class Startup
{
public Startup(IConfiguration configuration)
{
Configuration = configuration;
}

public IConfiguration Configuration { get; }

// This method gets called by the runtime. Use this method to add services to the container.
public void ConfigureServices(IServiceCollection services)
{
Expand All @@ -31,13 +23,8 @@ public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
if (env.IsDevelopment())
{
app.UseBrowserLink();
app.UseDeveloperExceptionPage();
}
else
{
app.UseExceptionHandler("/Home/Error");
}

app.UseGleamTech();

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@using GleamTech.AspNet.Core
@model GleamTech.DocumentUltimateExamples.AspNetCore.CS.Models.OverviewViewModel
@model GleamTech.DocumentUltimateExamples.AspNetCoreCS.Models.OverviewViewModel
<!DOCTYPE html>

<html>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@model GleamTech.DocumentUltimateExamples.AspNetCore.CS.Models.PossibleViewModel
@model GleamTech.DocumentUltimateExamples.AspNetCoreCS.Models.PossibleViewModel
<!DOCTYPE html>

<html>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27703.2000
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspNetCore.CS", "AspNetCore.CS\AspNetCore.CS.csproj", "{2AD943F9-8CEA-402A-AE92-16E007AC2166}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspNetCoreOnNetFullCS", "AspNetCoreOnNetFullCS\AspNetCoreOnNetFullCS.csproj", "{2AD943F9-8CEA-402A-AE92-16E007AC2166}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
30 changes: 30 additions & 0 deletions Examples/AspNetCoreOnNetFullCS/AspNetCoreOnNetFullCS.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net461</TargetFramework>
<AssemblyName>GleamTech.DocumentUltimateExamples.AspNetCoreOnNetFullCS</AssemblyName>
<RootNamespace>GleamTech.DocumentUltimateExamples.AspNetCoreOnNetFullCS</RootNamespace>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore" Version="2.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Mvc" Version="2.0.3" />
<PackageReference Include="Microsoft.AspNetCore.Session" Version="2.0.3" />
<PackageReference Include="Microsoft.AspNetCore.StaticFiles" Version="2.0.3" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="GleamTech.Core" Version="4.0.0" />
<PackageReference Include="DocumentUltimate" Version="5.0.0" />
</ItemGroup>

<ItemGroup>
<_CustomFiles Include="Controllers\**\*" />
<_CustomFiles Include="Views\**\*" />
<_CustomFiles Include="Descriptions\**\*" />
<DotnetPublishFiles Include="@(_CustomFiles)">
<DestinationRelativePath>%(Identity)</DestinationRelativePath>
</DotnetPublishFiles>
</ItemGroup>

</Project>
Loading

0 comments on commit 61ab650

Please sign in to comment.