File tree Expand file tree Collapse file tree 4 files changed +16
-10
lines changed Expand file tree Collapse file tree 4 files changed +16
-10
lines changed Original file line number Diff line number Diff line change 351351 {
352352 "Name" = "8:Microsoft Visual Studio"
353353 "ProductName" = "8:Lucid Scribe Web"
354- "ProductCode" = "8:{AD208D0C-5437-4DE7-823F-7A941AC50E9F }"
355- "PackageCode" = "8:{1B04C2CA-2932-4CB2-B565-A0135C986547 }"
354+ "ProductCode" = "8:{D1913A04-0AC3-4A67-BF19-38DCA9AE9411 }"
355+ "PackageCode" = "8:{3F28393A-57FB-4BCC-8E26-B8AE6683132B }"
356356 "UpgradeCode" = "8:{43D08B97-E09B-45FA-97D2-B9B1971D8BDB}"
357357 "AspNetVersion" = "8:4.0.30319.0"
358358 "RestartWWWService" = "11:FALSE"
359359 "RemovePreviousVersions" = "11:TRUE"
360360 "DetectNewerInstalledVersion" = "11:TRUE"
361361 "InstallAllUsers" = "11:TRUE"
362- "ProductVersion" = "8:1.0.0 "
362+ "ProductVersion" = "8:1.0.5 "
363363 "Manufacturer" = "8:lucidcode"
364364 "ARPHELPTELEPHONE" = "8:"
365365 "ARPHELPLINK" = "8:http://www.lucidcode.com/Contact"
883883 {
884884 "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_8A04AA9B98A94963AADF2135268ACC52"
885885 {
886- "SourcePath" = "8:..\\Web\\obj\\Release\\lucidcode.LucidScribe.Plugout.Yocto.PowerRelay .dll"
886+ "SourcePath" = "8:..\\Web\\obj\\Release\\lucidcode.LucidScribe.Plugout.Web .dll"
887887 "TargetName" = "8:"
888888 "Tag" = "8:"
889889 "Folder" = "8:_491A001224CF4D699EA475B2FB5F2890"
Original file line number Diff line number Diff line change 11using System ;
2+ using System . Diagnostics ;
23using System . Windows . Forms ;
34using System . Xml ;
45
@@ -32,8 +33,13 @@ public override void Trigger()
3233 var settings = new XmlDocument ( ) ;
3334 string path = Environment . GetFolderPath ( Environment . SpecialFolder . MyDocuments ) + @"\lucidcode\Lucid Scribe\Plugouts\Web.lsd" ;
3435 settings . Load ( path ) ;
35- var url = settings . DocumentElement . SelectSingleNode ( "Plugout/Description" ) ;
36- System . Diagnostics . Process . Start ( url . InnerText ) ;
36+ var url = settings . DocumentElement . SelectSingleNode ( "Plugout/Url" ) . InnerText ;
37+ var processStartInfo = new ProcessStartInfo ( "explorer.exe" , url )
38+ {
39+ UseShellExecute = true ,
40+ Verb = "open"
41+ } ;
42+ Process . Start ( processStartInfo ) ;
3743 }
3844 catch ( Exception ex )
3945 {
Original file line number Diff line number Diff line change 3232// You can specify all the values or you can default the Build and Revision Numbers
3333// by using the '*' as shown below:
3434// [assembly: AssemblyVersion("1.0.*")]
35- [ assembly: AssemblyVersion ( "1.0.0 .0" ) ]
36- [ assembly: AssemblyFileVersion ( "1.0.0 .0" ) ]
35+ [ assembly: AssemblyVersion ( "1.0.5 .0" ) ]
36+ [ assembly: AssemblyFileVersion ( "1.0.5 .0" ) ]
Original file line number Diff line number Diff line change 88 <ProjectGuid >{9D2510C8-8722-4C77-BE58-A0B4D3DF069B}</ProjectGuid >
99 <OutputType >Library</OutputType >
1010 <AppDesignerFolder >Properties</AppDesignerFolder >
11- <RootNamespace >lucidcode.LucidScribe.Plugout.Yocto.PowerRelay </RootNamespace >
12- <AssemblyName >lucidcode.LucidScribe.Plugout.Yocto.PowerRelay </AssemblyName >
11+ <RootNamespace >lucidcode.LucidScribe.Plugout.Web </RootNamespace >
12+ <AssemblyName >lucidcode.LucidScribe.Plugout.Web </AssemblyName >
1313 <TargetFrameworkVersion >v4.8</TargetFrameworkVersion >
1414 <FileAlignment >512</FileAlignment >
1515 <FileUpgradeFlags >
You can’t perform that action at this time.
0 commit comments