Skip to content

Commit

Permalink
Version 2.5.3
Browse files Browse the repository at this point in the history
## Version 2.5.3 - February 16, 2021

  - **Improved:** Updated GleamTech.Common.
  • Loading branch information
GleamTech committed Feb 16, 2021
1 parent 1c06b6d commit 9149175
Show file tree
Hide file tree
Showing 16 changed files with 45 additions and 50 deletions.
9 changes: 7 additions & 2 deletions Examples/AspNetCoreCS/AspNetCoreCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,17 @@
<TargetFramework>netcoreapp2.0</TargetFramework>
<AssemblyName>GleamTech.VideoUltimateExamples.AspNetCoreCS</AssemblyName>
<RootNamespace>GleamTech.VideoUltimateExamples.AspNetCoreCS</RootNamespace>
<!--disable NETSDK1138 outdated SDK warning-->
<CheckEolTargetFramework>false</CheckEolTargetFramework>
</PropertyGroup>

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

<ItemGroup>
<PackageReference Include="GleamTech.Common" Version="4.4.5" />
<PackageReference Include="GleamTech.VideoUltimate" Version="2.5.2" />
<PackageReference Include="GleamTech.Common" Version="4.5.0" />
<PackageReference Include="GleamTech.VideoUltimate" Version="2.5.3" />
</ItemGroup>

<ItemGroup>
Expand All @@ -32,6 +34,9 @@
<PackageReference Include="System.Security.Permissions">
<Version>4.7.0</Version>
</PackageReference>
<PackageReference Include="System.Runtime.Caching">
<Version>4.7.0</Version>
</PackageReference>
</ItemGroup>

<ItemGroup>
Expand Down
13 changes: 0 additions & 13 deletions Examples/AspNetCoreCS/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,4 @@
</system.webServer>
-->

<system.webServer>
<security>
<requestFiltering>
<!--
Maximum value for maxAllowedContentLength (in bytes) is 2147483648 (2GB).
Setting demo limit to 25 MB
-->
<requestLimits maxAllowedContentLength="26214400" />
</requestFiltering>
</security>
</system.webServer>


</configuration>
4 changes: 2 additions & 2 deletions Examples/AspNetCoreOnNetFullCS/AspNetCoreOnNetFullCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
</ItemGroup>

<ItemGroup>
<PackageReference Include="GleamTech.Common" Version="4.4.5" />
<PackageReference Include="GleamTech.VideoUltimate" Version="2.5.2" />
<PackageReference Include="GleamTech.Common" Version="4.5.0" />
<PackageReference Include="GleamTech.VideoUltimate" Version="2.5.3" />
</ItemGroup>

<ItemGroup>
Expand Down
13 changes: 0 additions & 13 deletions Examples/AspNetCoreOnNetFullCS/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,4 @@
</system.webServer>
-->

<system.webServer>
<security>
<requestFiltering>
<!--
Maximum value for maxAllowedContentLength (in bytes) is 2147483648 (2GB).
Setting demo limit to 25 MB
-->
<requestLimits maxAllowedContentLength="26214400" />
</requestFiltering>
</security>
</system.webServer>


</configuration>
4 changes: 2 additions & 2 deletions Examples/AspNetMvcCS/AspNetMvcCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.4.4.5\lib\net40\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.4.5.0\lib\net40\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="GleamTech.VideoUltimate">
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.2\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.3\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
</Reference>
<Reference Include="System.Drawing" />
<Reference Include="Microsoft.Web.Infrastructure, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetMvcCS/Packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
<package id="Microsoft.AspNet.Razor" version="2.0.30506.0" targetFramework="net40" />
<package id="Microsoft.AspNet.WebPages" version="2.0.30506.0" targetFramework="net40" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net40" />
<package id="GleamTech.Common" version="4.4.5" />
<package id="GleamTech.VideoUltimate" version="2.5.2" />
<package id="GleamTech.Common" version="4.5.0" />
<package id="GleamTech.VideoUltimate" version="2.5.3" />
</packages>
6 changes: 5 additions & 1 deletion Examples/AspNetMvcCS/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@
</namespaces>
</pages>

<httpRuntime maxRequestLength="25600" />
<!--
Setting maxRequestLength (in KB) to match default value 30000000 (28.6 MB) of
system.webServer/requestLimits/maxAllowedContentLength for ExampleFileSelector
-->
<httpRuntime maxRequestLength="29296"/>
</system.web>

<system.webServer>
Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetMvcVB/AspNetMvcVB.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.4.4.5\lib\net40\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.4.5.0\lib\net40\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="GleamTech.VideoUltimate">
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.2\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.3\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
</Reference>
<Reference Include="System.Drawing" />
<Reference Include="System.Web.Helpers, Version=2.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetMvcVB/Packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
<package id="Microsoft.AspNet.Razor" version="2.0.30506.0" targetFramework="net40" />
<package id="Microsoft.AspNet.WebPages" version="2.0.30506.0" targetFramework="net40" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net40" />
<package id="GleamTech.Common" version="4.4.5" />
<package id="GleamTech.VideoUltimate" version="2.5.2" />
<package id="GleamTech.Common" version="4.5.0" />
<package id="GleamTech.VideoUltimate" version="2.5.3" />
</packages>
6 changes: 5 additions & 1 deletion Examples/AspNetMvcVB/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@
</namespaces>
</pages>

<httpRuntime maxRequestLength="25600" />
<!--
Setting maxRequestLength (in KB) to match default value 30000000 (28.6 MB) of
system.webServer/requestLimits/maxAllowedContentLength for ExampleFileSelector
-->
<httpRuntime maxRequestLength="29296"/>
</system.web>

<system.webServer>
Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetWebFormsCS/AspNetWebFormsCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.4.4.5\lib\net40\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.4.5.0\lib\net40\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="GleamTech.VideoUltimate">
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.2\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.3\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
6 changes: 5 additions & 1 deletion Examples/AspNetWebFormsCS/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
<system.web>
<compilation debug="true" targetFramework="4.0" />

<httpRuntime maxRequestLength="25600"/>
<!--
Setting maxRequestLength (in KB) to match default value 30000000 (28.6 MB) of
system.webServer/requestLimits/maxAllowedContentLength for ExampleFileSelector
-->
<httpRuntime maxRequestLength="29296"/>
</system.web>

</configuration>
4 changes: 2 additions & 2 deletions Examples/AspNetWebFormsCS/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id="GleamTech.Common" version="4.4.5" />
<package id="GleamTech.VideoUltimate" version="2.5.2" />
<package id="GleamTech.Common" version="4.5.0" />
<package id="GleamTech.VideoUltimate" version="2.5.3" />
</packages>
4 changes: 2 additions & 2 deletions Examples/AspNetWebFormsVB/AspNetWebFormsVB.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.4.4.5\lib\net40\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.4.5.0\lib\net40\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="GleamTech.VideoUltimate">
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.2\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.VideoUltimate.2.5.3\lib\net40\GleamTech.VideoUltimate.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
6 changes: 5 additions & 1 deletion Examples/AspNetWebFormsVB/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@
<system.web>
<compilation debug="true" targetFramework="4.0" />

<httpRuntime maxRequestLength="25600"/>
<!--
Setting maxRequestLength (in KB) to match default value 30000000 (28.6 MB) of
system.webServer/requestLimits/maxAllowedContentLength for ExampleFileSelector
-->
<httpRuntime maxRequestLength="29296"/>
</system.web>

</configuration>
4 changes: 2 additions & 2 deletions Examples/AspNetWebFormsVB/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<packages>
<package id="GleamTech.Common" version="4.4.5" />
<package id="GleamTech.VideoUltimate" version="2.5.2" />
<package id="GleamTech.Common" version="4.5.0" />
<package id="GleamTech.VideoUltimate" version="2.5.3" />
</packages>

0 comments on commit 9149175

Please sign in to comment.