Skip to content

Commit e80315c

Browse files
committed
Fixes an issue where ACMA performance degrades when large numbers of users with the same account name prefix are added
Updates project to .NET FX 4.5
1 parent 03a5a40 commit e80315c

File tree

33 files changed

+64
-53
lines changed

33 files changed

+64
-53
lines changed

src/Lithnet.Acma.Ecma2/Lithnet.Acma.Ecma2.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>Lithnet.Acma.Ecma2</RootNamespace>
1111
<AssemblyName>Lithnet.Acma.Ecma2</AssemblyName>
12-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<SccProjectName>SAK</SccProjectName>
1515
<SccLocalPath>SAK</SccLocalPath>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="Costura.Fody" version="1.3.3.0" targetFramework="net40" />
4-
<package id="Fody" version="1.29.4" targetFramework="net40" developmentDependency="true" />
4+
<package id="Fody" version="1.29.4" targetFramework="net40" developmentDependency="true" requireReinstallation="true" />
55
<package id="ILMerge" version="2.14.1208" targetFramework="net40" />
66
<package id="Lithnet.Common.ObjectModel" version="1.0.5777.18973" targetFramework="net40" />
77
<package id="Lithnet.Logging" version="1.0.5774.20685" targetFramework="net40" />
88
<package id="Lithnet.MetadirectoryServices" version="1.0.6017.24789" targetFramework="net40" />
9-
<package id="PropertyChanged.Fody" version="1.51.3" targetFramework="net40" developmentDependency="true" />
9+
<package id="PropertyChanged.Fody" version="1.51.3" targetFramework="net40" developmentDependency="true" requireReinstallation="true" />
1010
</packages>

src/Lithnet.Acma.Editor/Lithnet.Acma.Editor.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>Lithnet.Acma.Editor</RootNamespace>
1111
<AssemblyName>Lithnet.Acma.Editor</AssemblyName>
12-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
1414
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
1515
<WarningLevel>4</WarningLevel>

src/Lithnet.Acma.Editor/Properties/Resources.Designer.cs

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Lithnet.Acma.Editor/Properties/Settings.Designer.cs

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/Lithnet.Acma.Editor/app.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
</setting>
1515
</Lithnet.Acma.Editor.Properties.Settings>
1616
</userSettings>
17-
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup></configuration>
17+
<startup><supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/></startup></configuration>
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="Fody" version="1.29.4" targetFramework="net40" developmentDependency="true" />
3+
<package id="Fody" version="1.29.4" targetFramework="net40" developmentDependency="true" requireReinstallation="true" />
44
<package id="Lithnet.Common.ObjectModel" version="1.0.5777.18973" targetFramework="net40" />
55
<package id="Lithnet.Common.Presentation" version="1.0.5777.18976" targetFramework="net40" />
66
<package id="Lithnet.Logging" version="1.0.5774.20685" targetFramework="net40" />
77
<package id="Lithnet.MetadirectoryServices.Resolver" version="1.0.6006.11723" targetFramework="net40" />
8-
<package id="PropertyChanged.Fody" version="1.51.3" targetFramework="net40" developmentDependency="true" />
8+
<package id="PropertyChanged.Fody" version="1.51.3" targetFramework="net40" developmentDependency="true" requireReinstallation="true" />
99
<package id="System.Windows.Interactivity.WPF" version="2.0.20525" targetFramework="net40" />
1010
</packages>

src/Lithnet.Acma.Installer.CustomActions/Lithnet.Acma.Installer.CustomActions.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<AppDesignerFolder>Properties</AppDesignerFolder>
1111
<RootNamespace>Lithnet.Acma.Installer</RootNamespace>
1212
<AssemblyName>Lithnet.Acma.Installer.CustomActions</AssemblyName>
13-
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
13+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
1414
<FileAlignment>512</FileAlignment>
1515
<WixCATargetsPath Condition=" '$(WixCATargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.CA.targets</WixCATargetsPath>
1616
<TargetFrameworkProfile />

src/Lithnet.Acma.Installer/Product.wxs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<Product Id="*"
55
Name="Lithnet ACMA"
66
Language="1033"
7-
Version="1.1.5954"
7+
Version="1.1.6058"
88
Manufacturer="Lithnet"
99
UpgradeCode="bcb559bd-8b3a-4a77-9d30-df3fa44b7a13">
1010

src/Lithnet.Acma.PS/AcmaObjects/GetAcmaObject.cs

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

1212
namespace Lithnet.Acma.PS
1313
{
14-
[Cmdlet(VerbsCommon.Get, "AcmaObject", DefaultParameterSetName = "GetResource")]
14+
[Cmdlet(VerbsCommon.Get, "AcmaObject", DefaultParameterSetName = "GetResourceByKey")]
1515
public class GetAcmaObjectCmdLet : AcmaCmdletConnected
1616
{
1717
[Parameter(ParameterSetName = "GetResource", ValueFromPipeline = true, Mandatory = true, Position = 1)]

0 commit comments

Comments
 (0)