Skip to content

Commit

Permalink
Version 3.7.0
Browse files Browse the repository at this point in the history
## Version 3.7.0 - February 23, 2023

  - **Changed:** .NET Framework target is changed from net461 to net472.
    So from now on, you need to have a .NET Framework 4.7.2 or above project to reference our .NET Framework DLL (not related to our .netstandard2.0 DLL).
    Minimum supported development environment version is changed from Visual Studio 2012 to Visual Studio 2015 (first to support net472 targeting pack).
    Minimum supported deployment server OS is still Windows Server 2008 R2 SP1 (first to support net472 runtime).
    Minimum supported deployment client OS is still Windows 7 SP1 (first to support net472 runtime).

  - **Changed:** GleamTechConfiguration.LogEnabled property -> The default value is now true.
    GleamTech.log can be found under the temporary folder specified by GleamTechConfiguration.TemporaryFolder.

  - **Improved:** Updated GleamTech.Common.
  • Loading branch information
GleamTech committed Feb 23, 2023
1 parent 8730e84 commit 9d36dc0
Show file tree
Hide file tree
Showing 22 changed files with 74 additions and 80 deletions.
2 changes: 1 addition & 1 deletion Examples/AspNetCoreCS.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 16
VisualStudioVersion = 16.0.30709.132
MinimumVisualStudioVersion = 11.0.50727.1
MinimumVisualStudioVersion = 14.0.23107.0
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspNetCoreCS", "AspNetCoreCS\AspNetCoreCS.csproj", "{FDA0E92D-1D0D-4EC2-AA71-7D9D037A7C01}"
EndProject
Global
Expand Down
6 changes: 3 additions & 3 deletions Examples/AspNetCoreCS/AspNetCoreCS.csproj
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<TargetFramework>net6.0</TargetFramework>
<AssemblyName>GleamTech.VideoUltimateExamples.AspNetCoreCS</AssemblyName>
<RootNamespace>GleamTech.VideoUltimateExamples.AspNetCoreCS</RootNamespace>
<!--disable NETSDK1138 outdated SDK warning-->
<CheckEolTargetFramework>false</CheckEolTargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="GleamTech.Common" Version="5.5.5" />
<PackageReference Include="GleamTech.VideoUltimate" Version="3.6.1" />
<PackageReference Include="GleamTech.Common" Version="5.6.0" />
<PackageReference Include="GleamTech.VideoUltimate" Version="3.7.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetCoreCS/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:42955",
"applicationUrl": "http://localhost:5220",
"sslPort": 0
}
},
Expand All @@ -19,7 +19,7 @@
"commandName": "Project",
"dotnetRunMessages": "true",
"launchBrowser": true,
"applicationUrl": "http://localhost:5000",
"applicationUrl": "http://localhost:5221",
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
}
Expand Down
2 changes: 1 addition & 1 deletion Examples/AspNetCoreOnNetFullCS.sln
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26730.3
MinimumVisualStudioVersion = 11.0.50727.1
MinimumVisualStudioVersion = 14.0.23107.0
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AspNetCoreOnNetFullCS", "AspNetCoreOnNetFullCS\AspNetCoreOnNetFullCS.csproj", "{2AD943F9-8CEA-402A-AE92-16E007AC2166}"
EndProject
Global
Expand Down
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="5.5.5" />
<PackageReference Include="GleamTech.VideoUltimate" Version="3.6.1" />
<PackageReference Include="GleamTech.Common" Version="5.6.0" />
<PackageReference Include="GleamTech.VideoUltimate" Version="3.7.0" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetCoreOnNetFullCS/Properties/launchSettings.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"windowsAuthentication": false,
"anonymousAuthentication": true,
"iisExpress": {
"applicationUrl": "http://localhost:54485/",
"applicationUrl": "http://localhost:5216/",
"sslPort": 0
}
},
Expand All @@ -21,7 +21,7 @@
"environmentVariables": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"applicationUrl": "http://localhost:54486/"
"applicationUrl": "http://localhost:5217/"
}
}
}
6 changes: 3 additions & 3 deletions Examples/AspNetMvcCS.sln
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25123.0
MinimumVisualStudioVersion = 11.0.50727.1
# Visual Studio 15
VisualStudioVersion = 15.0.26730.3
MinimumVisualStudioVersion = 14.0.23107.0
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AspNetMvcCS", "AspNetMvcCS\AspNetMvcCS.csproj", "{51B698FB-5DA0-43BB-A2A1-09E77FDDD948}"
EndProject
Global
Expand Down
15 changes: 7 additions & 8 deletions Examples/AspNetMvcCS/AspNetMvcCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>GleamTech.VideoUltimateExamples.AspNetMvcCS</RootNamespace>
<AssemblyName>GleamTech.VideoUltimateExamples.AspNetMvcCS</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<UseIISExpress>true</UseIISExpress>
<Use64BitIISExpress />
<IISExpressSSLPort />
Expand Down Expand Up @@ -46,10 +46,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.5.5.5\lib\net461\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.5.6.0\lib\net472\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="GleamTech.VideoUltimate">
<HintPath>..\packages\GleamTech.VideoUltimate.3.6.1\lib\net461\GleamTech.VideoUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.VideoUltimate.3.7.0\lib\net472\GleamTech.VideoUltimate.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down Expand Up @@ -141,14 +141,13 @@
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties>
<UseIIS>False</UseIIS>
<AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>54829</DevelopmentServerPort>
<AutoAssignPort>False</AutoAssignPort>
<DevelopmentServerPort>5212</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>http://localhost:54829/</IISUrl>
<IISUrl>http://localhost:5212/</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>False</UseCustomServer>
<CustomServerUrl>
</CustomServerUrl>
<CustomServerUrl></CustomServerUrl>
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
</WebProjectProperties>
</FlavorProperties>
Expand Down
12 changes: 6 additions & 6 deletions Examples/AspNetMvcCS/Packages.config
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.AspNet.Mvc" version="5.2.7" targetFramework="net461" />
<package id="Microsoft.AspNet.Razor" version="3.2.7" targetFramework="net461" />
<package id="Microsoft.AspNet.WebPages" version="3.2.7" targetFramework="net461" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net461" />
<package id="GleamTech.Common" version="5.5.5" />
<package id="GleamTech.VideoUltimate" version="3.6.1" />
<package id="Microsoft.AspNet.Mvc" version="5.2.7" targetFramework="net472" />
<package id="Microsoft.AspNet.Razor" version="3.2.7" targetFramework="net472" />
<package id="Microsoft.AspNet.WebPages" version="3.2.7" targetFramework="net472" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net472" />
<package id="GleamTech.Common" version="5.6.0" />
<package id="GleamTech.VideoUltimate" version="3.7.0" />
</packages>
4 changes: 2 additions & 2 deletions Examples/AspNetMvcCS/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
Setting maxRequestLength (in KB) to match default value 30000000 (28.6 MB) of
system.webServer/requestLimits/maxAllowedContentLength for ExampleFileSelector
-->
<httpRuntime targetFramework="4.6.1" maxRequestLength="29296" />
<compilation debug="true" targetFramework="4.6.1"/>
<httpRuntime targetFramework="4.7.2" maxRequestLength="29296" />
<compilation debug="true" targetFramework="4.7.2"/>
</system.web>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
Expand Down
6 changes: 3 additions & 3 deletions Examples/AspNetMvcVB.sln
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25123.0
MinimumVisualStudioVersion = 11.0.50727.1
# Visual Studio 15
VisualStudioVersion = 15.0.26730.3
MinimumVisualStudioVersion = 14.0.23107.0
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "AspNetMvcVB", "AspNetMvcVB\AspNetMvcVB.vbproj", "{25B55037-14CB-42A7-91EF-B4D757BD54D7}"
EndProject
Global
Expand Down
13 changes: 6 additions & 7 deletions Examples/AspNetMvcVB/AspNetMvcVB.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<OutputType>Library</OutputType>
<RootNamespace>GleamTech.VideoUltimateExamples.AspNetMvcVB</RootNamespace>
<AssemblyName>GleamTech.VideoUltimateExamples.AspNetMvcVB</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<MyType>Custom</MyType>
<UseIISExpress>true</UseIISExpress>
<Use64BitIISExpress />
Expand Down Expand Up @@ -48,10 +48,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.5.5.5\lib\net461\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.5.6.0\lib\net472\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="GleamTech.VideoUltimate">
<HintPath>..\packages\GleamTech.VideoUltimate.3.6.1\lib\net461\GleamTech.VideoUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.VideoUltimate.3.7.0\lib\net472\GleamTech.VideoUltimate.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
Expand Down Expand Up @@ -219,13 +219,12 @@
<WebProjectProperties>
<UseIIS>False</UseIIS>
<AutoAssignPort>False</AutoAssignPort>
<DevelopmentServerPort>56724</DevelopmentServerPort>
<DevelopmentServerPort>5213</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>http://localhost:56724/</IISUrl>
<IISUrl>http://localhost:5213/</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>False</UseCustomServer>
<CustomServerUrl>
</CustomServerUrl>
<CustomServerUrl></CustomServerUrl>
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
</WebProjectProperties>
</FlavorProperties>
Expand Down
12 changes: 6 additions & 6 deletions Examples/AspNetMvcVB/Packages.config
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Microsoft.AspNet.Mvc" version="5.2.7" targetFramework="net461" />
<package id="Microsoft.AspNet.Razor" version="3.2.7" targetFramework="net461" />
<package id="Microsoft.AspNet.WebPages" version="3.2.7" targetFramework="net461" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net461" />
<package id="GleamTech.Common" version="5.5.5" />
<package id="GleamTech.VideoUltimate" version="3.6.1" />
<package id="Microsoft.AspNet.Mvc" version="5.2.7" targetFramework="net472" />
<package id="Microsoft.AspNet.Razor" version="3.2.7" targetFramework="net472" />
<package id="Microsoft.AspNet.WebPages" version="3.2.7" targetFramework="net472" />
<package id="Microsoft.Web.Infrastructure" version="1.0.0.0" targetFramework="net472" />
<package id="GleamTech.Common" version="5.6.0" />
<package id="GleamTech.VideoUltimate" version="3.7.0" />
</packages>
4 changes: 2 additions & 2 deletions Examples/AspNetMvcVB/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
Setting maxRequestLength (in KB) to match default value 30000000 (28.6 MB) of
system.webServer/requestLimits/maxAllowedContentLength for ExampleFileSelector
-->
<httpRuntime targetFramework="4.6.1" maxRequestLength="29296" />
<compilation debug="true" targetFramework="4.6.1"/>
<httpRuntime targetFramework="4.7.2" maxRequestLength="29296" />
<compilation debug="true" targetFramework="4.7.2"/>
</system.web>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
Expand Down
6 changes: 3 additions & 3 deletions Examples/AspNetWebFormsCS.sln
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25123.0
MinimumVisualStudioVersion = 11.0.50727.1
# Visual Studio 15
VisualStudioVersion = 15.0.26730.3
MinimumVisualStudioVersion = 14.0.23107.0
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AspNetWebFormsCS", "AspNetWebFormsCS\AspNetWebFormsCS.csproj", "{A4260AAF-3B93-4AEA-8065-0A7A048510E5}"
EndProject
Global
Expand Down
16 changes: 7 additions & 9 deletions Examples/AspNetWebFormsCS/AspNetWebFormsCS.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>GleamTech.VideoUltimateExamples.AspNetWebFormsCS</RootNamespace>
<AssemblyName>GleamTech.VideoUltimateExamples.AspNetWebFormsCS</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<UseIISExpress>false</UseIISExpress>
<FileUpgradeFlags>
</FileUpgradeFlags>
Expand Down Expand Up @@ -51,10 +51,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.5.5.5\lib\net461\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.5.6.0\lib\net472\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="GleamTech.VideoUltimate">
<HintPath>..\packages\GleamTech.VideoUltimate.3.6.1\lib\net461\GleamTech.VideoUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.VideoUltimate.3.7.0\lib\net472\GleamTech.VideoUltimate.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down Expand Up @@ -131,15 +131,13 @@
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties>
<UseIIS>False</UseIIS>
<AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>50319</DevelopmentServerPort>
<AutoAssignPort>False</AutoAssignPort>
<DevelopmentServerPort>5210</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>
</IISUrl>
<IISUrl>http://localhost:5210/</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>False</UseCustomServer>
<CustomServerUrl>
</CustomServerUrl>
<CustomServerUrl></CustomServerUrl>
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
</WebProjectProperties>
</FlavorProperties>
Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetWebFormsCS/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Setting maxRequestLength (in KB) to match default value 30000000 (28.6 MB) of
system.webServer/requestLimits/maxAllowedContentLength for ExampleFileSelector
-->
<httpRuntime targetFramework="4.6.1" maxRequestLength="29296" />
<compilation debug="true" targetFramework="4.6.1"/>
<httpRuntime targetFramework="4.7.2" maxRequestLength="29296" />
<compilation debug="true" targetFramework="4.7.2"/>
</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="5.5.5" />
<package id="GleamTech.VideoUltimate" version="3.6.1" />
<package id="GleamTech.Common" version="5.6.0" />
<package id="GleamTech.VideoUltimate" version="3.7.0" />
</packages>
6 changes: 3 additions & 3 deletions Examples/AspNetWebFormsVB.sln
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25123.0
MinimumVisualStudioVersion = 11.0.50727.1
# Visual Studio 15
VisualStudioVersion = 15.0.26730.3
MinimumVisualStudioVersion = 14.0.23107.0
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "AspNetWebFormsVB", "AspNetWebFormsVB\AspNetWebFormsVB.vbproj", "{6C1AFBEB-71DF-4442-B489-B6145EDAFCFC}"
EndProject
Global
Expand Down
16 changes: 7 additions & 9 deletions Examples/AspNetWebFormsVB/AspNetWebFormsVB.vbproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<OutputType>Library</OutputType>
<RootNamespace>GleamTech.VideoUltimateExamples.AspNetWebFormsVB</RootNamespace>
<AssemblyName>GleamTech.VideoUltimateExamples.AspNetWebFormsVB</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.7.2</TargetFrameworkVersion>
<MyType>Custom</MyType>
<UseIISExpress>false</UseIISExpress>
<FileUpgradeFlags>
Expand Down Expand Up @@ -65,10 +65,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="GleamTech.Common">
<HintPath>..\packages\GleamTech.Common.5.5.5\lib\net461\GleamTech.Common.dll</HintPath>
<HintPath>..\packages\GleamTech.Common.5.6.0\lib\net472\GleamTech.Common.dll</HintPath>
</Reference>
<Reference Include="GleamTech.VideoUltimate">
<HintPath>..\packages\GleamTech.VideoUltimate.3.6.1\lib\net461\GleamTech.VideoUltimate.dll</HintPath>
<HintPath>..\packages\GleamTech.VideoUltimate.3.7.0\lib\net472\GleamTech.VideoUltimate.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.Data" />
Expand Down Expand Up @@ -204,15 +204,13 @@
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties>
<UseIIS>False</UseIIS>
<AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>51033</DevelopmentServerPort>
<AutoAssignPort>False</AutoAssignPort>
<DevelopmentServerPort>5211</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>
</IISUrl>
<IISUrl>http://localhost:5211/</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>False</UseCustomServer>
<CustomServerUrl>
</CustomServerUrl>
<CustomServerUrl></CustomServerUrl>
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
</WebProjectProperties>
</FlavorProperties>
Expand Down
4 changes: 2 additions & 2 deletions Examples/AspNetWebFormsVB/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
Setting maxRequestLength (in KB) to match default value 30000000 (28.6 MB) of
system.webServer/requestLimits/maxAllowedContentLength for ExampleFileSelector
-->
<httpRuntime targetFramework="4.6.1" maxRequestLength="29296" />
<compilation debug="true" targetFramework="4.6.1"/>
<httpRuntime targetFramework="4.7.2" maxRequestLength="29296" />
<compilation debug="true" targetFramework="4.7.2"/>
</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="5.5.5" />
<package id="GleamTech.VideoUltimate" version="3.6.1" />
<package id="GleamTech.Common" version="5.6.0" />
<package id="GleamTech.VideoUltimate" version="3.7.0" />
</packages>

0 comments on commit 9d36dc0

Please sign in to comment.