Skip to content

Commit 4597f12

Browse files
committed
release v1.2
1 parent dfcdfcf commit 4597f12

6 files changed

Lines changed: 20 additions & 18 deletions

File tree

ConfigMgr.QuickTools.Device/ClientCache.cs

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,13 @@
44
using Microsoft.ConfigurationManagement.AdminConsole.DialogFramework;
55
using System;
66
using System.Reflection;
7+
using System.Windows;
78

89
namespace ConfigMgr.QuickTools.Device
910
{
1011
public static class ClientCache
1112
{
12-
private static DeviceProgressDialog deviceProgressDialog;
13+
//private static DeviceProgressDialog deviceProgressDialog;
1314

1415
public static void ChangeClientCache(object sender, ScopeNode scopeNode, ActionDescription action, IResultObject selectedResultObjects, PropertyDataUpdated dataUpdatedDelegate, Status status)
1516
{
@@ -44,14 +45,15 @@ public static void ChangeClientCache(object sender, ScopeNode scopeNode, ActionD
4445

4546
if (showProgressDialog)
4647
{
47-
Type type = typeof(ClientCache);
48-
MethodInfo methodInfo = type.GetMethod("ChangeClientCacheSize");
48+
MessageBox.Show("Not implemented yet!", "Configuration Manager", MessageBoxButton.YesNo, MessageBoxImage.Exclamation);
49+
//Type type = typeof(ClientCache);
50+
//MethodInfo methodInfo = type.GetMethod("ChangeClientCacheSize");
4951

50-
deviceProgressDialog = new DeviceProgressDialog(action, selectedResultObjects, methodInfo)
51-
{
52-
Total = total
53-
};
54-
deviceProgressDialog.ShowDialog();
52+
//deviceProgressDialog = new DeviceProgressDialog(action, selectedResultObjects, methodInfo)
53+
//{
54+
// Total = total
55+
//};
56+
//deviceProgressDialog.ShowDialog();
5557
}
5658
else
5759
{

ConfigMgr.QuickTools.Device/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.1.214.0")]
35-
[assembly: AssemblyFileVersion("1.1.214.0")]
34+
[assembly: AssemblyVersion("1.2.1.0")]
35+
[assembly: AssemblyFileVersion("1.2.1.0")]
3636

3737
[assembly: log4net.Config.XmlConfigurator(ConfigFile = "log4net.config", Watch = true)]

ConfigMgr.QuickTools.DriverManager/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.1.98.0")]
35-
[assembly: AssemblyFileVersion("1.1.98.0")]
34+
[assembly: AssemblyVersion("1.2.1.0")]
35+
[assembly: AssemblyFileVersion("1.2.1.0")]
3636

3737
[assembly: log4net.Config.XmlConfigurator(ConfigFile = "log4net.config", Watch = true)]

ConfigMgr.QuickTools.Warranty/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.1.98.0")]
35-
[assembly: AssemblyFileVersion("1.1.98.0")]
34+
[assembly: AssemblyVersion("1.2.1.0")]
35+
[assembly: AssemblyFileVersion("1.2.1.0")]
3636

3737
[assembly: log4net.Config.XmlConfigurator(ConfigFile = "log4net.config", Watch = true)]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<item>
3-
<version>1.1.1.0</version>
4-
<url>https://github.com/Flowman/ConfigMgr-Quick-Tools/releases/download/v1.1/ConfigMgr_Quick_Tools.msi</url>
3+
<version>1.2.1.0</version>
4+
<url>https://github.com/Flowman/ConfigMgr-Quick-Tools/releases/download/v1.2/ConfigMgr_Quick_Tools.msi</url>
55
<changelog>https://github.com/Flowman/ConfigMgr-Quick-Tools/releases</changelog>
66
<mandatory>false</mandatory>
77
</item>

ConfigMgr.QuickTools/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
// You can specify all the values or you can default the Build and Revision Numbers
3232
// by using the '*' as shown below:
3333
// [assembly: AssemblyVersion("1.0.*")]
34-
[assembly: AssemblyVersion("1.1.100.0")]
35-
[assembly: AssemblyFileVersion("1.1.100.0")]
34+
[assembly: AssemblyVersion("1.2.1.0")]
35+
[assembly: AssemblyFileVersion("1.2.1.0")]
3636

3737
[assembly: log4net.Config.XmlConfigurator(ConfigFile = "log4net.config", Watch = true)]

0 commit comments

Comments
 (0)