Skip to content

Commit e839fc7

Browse files
committed
Updates licensing library
1 parent f0c70bd commit e839fc7

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

src/Lithnet.GoogleApps.MA.UnitTests/Lithnet.GoogleApps.MA.UnitTests.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,8 +108,8 @@
108108
<Reference Include="Lithnet.GoogleApps, Version=1.0.7771.31436, Culture=neutral, processorArchitecture=MSIL">
109109
<HintPath>..\packages\Lithnet.GoogleApps.1.0.7771.31436\lib\net452\Lithnet.GoogleApps.dll</HintPath>
110110
</Reference>
111-
<Reference Include="Lithnet.Licensing.Core, Version=1.0.7772.24409, Culture=neutral, processorArchitecture=MSIL">
112-
<HintPath>..\packages\Lithnet.Licensing.Core.1.0.7772.24409\lib\netstandard2.0\Lithnet.Licensing.Core.dll</HintPath>
111+
<Reference Include="Lithnet.Licensing.Core, Version=1.0.8060.35508, Culture=neutral, processorArchitecture=MSIL">
112+
<HintPath>..\packages\Lithnet.Licensing.Core.1.0.8060.35508\lib\netstandard2.0\Lithnet.Licensing.Core.dll</HintPath>
113113
</Reference>
114114
<Reference Include="Lithnet.Logging, Version=1.0.5774.20685, Culture=neutral, processorArchitecture=MSIL">
115115
<HintPath>..\packages\Lithnet.Logging.1.0.5774.20685\lib\net40\Lithnet.Logging.dll</HintPath>

src/Lithnet.GoogleApps.MA.UnitTests/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<package id="Google.GData.Contacts" version="2.2.0.0" targetFramework="net452" />
1515
<package id="Google.GData.Extensions" version="2.2.0.0" targetFramework="net452" />
1616
<package id="Lithnet.GoogleApps" version="1.0.7771.31436" targetFramework="net452" />
17-
<package id="Lithnet.Licensing.Core" version="1.0.7772.24409" targetFramework="net472" />
17+
<package id="Lithnet.Licensing.Core" version="1.0.8060.35508" targetFramework="net472" />
1818
<package id="Lithnet.Logging" version="1.0.5774.20685" targetFramework="net452" />
1919
<package id="Lithnet.MetadirectoryServices" version="1.0.7578.14947" targetFramework="net452" />
2020
<package id="log4net" version="2.0.12" targetFramework="net452" />

src/Lithnet.GoogleApps.MA/Enums/Features.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace Lithnet.GoogleApps.MA
88
{
9-
internal enum Features : uint
9+
internal enum Features : ulong
1010
{
1111
None = 0,
1212
OrgUnits = 1,

src/Lithnet.GoogleApps.MA/Enums/Skus.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace Lithnet.GoogleApps.MA
88
{
9-
public enum Skus : uint
9+
public enum Skus : ulong
1010
{
1111
Standard = 0,
1212
AddOn = 1,

src/Lithnet.GoogleApps.MA/Lithnet.GoogleApps.MA.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@
216216
<Reference Include="Lithnet.GoogleApps, Version=1.0.7771.31436, Culture=neutral, processorArchitecture=MSIL">
217217
<HintPath>..\packages\Lithnet.GoogleApps.1.0.7771.31436\lib\net452\Lithnet.GoogleApps.dll</HintPath>
218218
</Reference>
219-
<Reference Include="Lithnet.Licensing.Core, Version=1.0.7772.24409, Culture=neutral, processorArchitecture=MSIL">
220-
<HintPath>..\packages\Lithnet.Licensing.Core.1.0.7772.24409\lib\netstandard2.0\Lithnet.Licensing.Core.dll</HintPath>
219+
<Reference Include="Lithnet.Licensing.Core, Version=1.0.8060.35508, Culture=neutral, processorArchitecture=MSIL">
220+
<HintPath>..\packages\Lithnet.Licensing.Core.1.0.8060.35508\lib\netstandard2.0\Lithnet.Licensing.Core.dll</HintPath>
221221
</Reference>
222222
<Reference Include="Lithnet.Logging, Version=1.0.5774.20685, Culture=neutral, processorArchitecture=MSIL">
223223
<HintPath>..\packages\Lithnet.Logging.1.0.5774.20685\lib\net40\Lithnet.Logging.dll</HintPath>

src/Lithnet.GoogleApps.MA/ManagementAgentParameters.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public ILicenseManager<Features, Skus> LicenseManager
4545
{
4646
if (licenseManager == null)
4747
{
48-
licenseManager = new LicenseManager<Features, Skus>(this, this.Domain, ProductID);
48+
licenseManager = new LicenseManager<Features, Skus>(this, ProductID, this.Domain);
4949
}
5050

5151
return licenseManager;

src/Lithnet.GoogleApps.MA/packages.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<package id="Google.GData.Contacts" version="2.2.0.0" targetFramework="net452" />
1616
<package id="Google.GData.Extensions" version="2.2.0.0" targetFramework="net452" />
1717
<package id="Lithnet.GoogleApps" version="1.0.7771.31436" targetFramework="net452" />
18-
<package id="Lithnet.Licensing.Core" version="1.0.7772.24409" targetFramework="net472" />
18+
<package id="Lithnet.Licensing.Core" version="1.0.8060.35508" targetFramework="net472" />
1919
<package id="Lithnet.Logging" version="1.0.5774.20685" targetFramework="net452" />
2020
<package id="Lithnet.MetadirectoryServices" version="1.0.7578.14947" targetFramework="net452" />
2121
<package id="log4net" version="2.0.12" targetFramework="net452" />

0 commit comments

Comments
 (0)