init
This commit is contained in:
20
DataPRO/Modules/InstallerCustomActions/OpenFolder/Folder.cs
Normal file
20
DataPRO/Modules/InstallerCustomActions/OpenFolder/Folder.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System;
|
||||
using DTS.Common.Classes.WindowsFolders;
|
||||
|
||||
namespace OpenFolder
|
||||
{
|
||||
class Folder
|
||||
{
|
||||
private static void Main(string[] args)
|
||||
{
|
||||
try
|
||||
{
|
||||
WindowsFolder.OpenManualsFolder(args[0]);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
//eat exception
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user