Changeset 12
- Timestamp:
- 08/26/07 13:06:50 (1 year ago)
- Files:
-
- trunk/ClassLibrary (added)
- trunk/ClassLibrary/ClassDiagram.cd (added)
- trunk/ClassLibrary/ClassLibrary.csproj (added)
- trunk/ClassLibrary/Dean.Edwards (added)
- trunk/ClassLibrary/Dean.Edwards/ECMAScriptPacker.cs (copied) (copied from trunk/Dean.Edwards/ECMAScriptPacker.cs)
- trunk/ClassLibrary/Dean.Edwards/ParseMaster.cs (copied) (copied from trunk/Dean.Edwards/ParseMaster.cs)
- trunk/ClassLibrary/JavaScriptSupport (added)
- trunk/ClassLibrary/JavaScriptSupport/JavaScriptMinifier.cs (added)
- trunk/ClassLibrary/MSBuild (added)
- trunk/ClassLibrary/MSBuild/Packer.cs (added)
- trunk/ClassLibrary/Properties (added)
- trunk/ClassLibrary/Properties/AssemblyInfo.cs (added)
- trunk/ClassLibrary/Utility.cs (added)
- trunk/ConsoleApplication/ConsoleApplication.csproj (modified) (1 diff)
- trunk/ConsoleApplication/Program.cs (modified) (6 diffs)
- trunk/MSBuild.Packer.Targets (added)
- trunk/Packer.sln (modified) (3 diffs)
- trunk/Setup/Setup.vdproj (modified) (14 diffs)
- trunk/SolutionInfo.cs (modified) (1 diff)
- trunk/WinForm/WinForm.csproj (modified) (1 diff)
- trunk/sample.proj (added)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/ConsoleApplication/ConsoleApplication.csproj
r5 r12 43 43 </ItemGroup> 44 44 <ItemGroup> 45 <ProjectReference Include="..\ClassLibrary\Dean.Edwards.csproj"> 46 <Project>{04E76982-5197-4625-8F78-90673DB5807E}</Project> 47 <Name>Dean.Edwards</Name> 48 </ProjectReference> 49 <ProjectReference Include="..\JavaScriptSupport\JavaScriptSupport.csproj"> 50 <Project>{84D840D9-E6B9-4AD3-B5CE-B3887DF28849}</Project> 51 <Name>JavaScriptSupport</Name> 52 </ProjectReference> 45 <Content Include="App.ico" /> 53 46 </ItemGroup> 54 47 <ItemGroup> 55 <Content Include="App.ico" /> 48 <ProjectReference Include="..\ClassLibrary\ClassLibrary.csproj"> 49 <Project>{155538CC-3983-4D87-B2F8-5B6854FB460F}</Project> 50 <Name>ClassLibrary</Name> 51 </ProjectReference> 56 52 </ItemGroup> 57 53 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> trunk/ConsoleApplication/Program.cs
r5 r12 1 1 using System; 2 using System.Collections.Generic; 2 3 using System.Text; 3 4 using System.IO; 4 5 using Dean.Edwards; 5 6 using JavaScriptSupport; 7 using SmallSharpTools.Packer; 6 8 7 9 namespace ConsoleApplication … … 10 12 { 11 13 private const string CommonName = "SmallSharpTools.Packer"; 12 private const string PackerName = "Packer 3.0";13 private const string JsMinName = "JsMin";14 14 15 15 static void Main(string[] args) … … 37 37 } 38 38 39 string mode = "packer";39 PackMode mode = PackMode.Packer; 40 40 41 41 if ("-m".Equals(args[startIndex])) … … 43 43 if (args.Length > startIndex+1) 44 44 { 45 mode = args[startIndex+1]; 45 string str = args[startIndex+1]; 46 if ("packer".Equals(str)) 47 { 48 mode = PackMode.Packer; 49 } 50 else if ("jsmin".Equals(str)) 51 { 52 mode = PackMode.JSMin; 53 } 54 else 55 { 56 Utility.ShowMessage("Mode is not recognized: " + str, true); 57 ShowUsage(); 58 return; 59 } 46 60 startIndex += 2; 47 61 } … … 53 67 } 54 68 55 if (File.Exists(outputFile)) 56 { 57 File.Delete(outputFile); 58 } 59 60 StringBuilder sb = new StringBuilder(); 61 69 List<string> inputFiles = new List<string>(); 70 62 71 for (int i=startIndex;i<args.Length;i++) 63 72 { 64 73 string filename = args[i]; 65 ShowMessage("Processing " + filename, false);74 Utility.ShowMessage("Processing " + filename, false); 66 75 if (File.Exists(filename)) 67 76 { 68 StreamReader streamReader = File.OpenText(filename); 69 sb.AppendLine(streamReader.ReadToEnd()); 77 inputFiles.Add(filename); 70 78 } 71 79 } 72 80 73 ShowMessage("Writing output to " + outputFile, false); 74 75 string output = String.Empty; 76 77 if ("packer".Equals(mode)) 78 { 79 output = RunPacker(sb.ToString()); 80 } 81 else if ("jsmin".Equals(mode)) 82 { 83 output = RunJsMin(sb.ToString()); 84 } 85 else 86 { 87 ShowMessage("Mode not recognized.", true); 88 ShowUsage(); 89 return; 90 } 91 92 StreamWriter sw = new StreamWriter(outputFile, false); 93 StringReader stringReader = new StringReader(output); 94 95 while (stringReader.Peek() > 0) 96 { 97 string line = stringReader.ReadLine(); 98 sw.WriteLine(line); 99 } 100 101 stringReader.Close(); 102 sw.Close(); 103 } 104 105 private static string RunPacker(string script) 106 { 107 ECMAScriptPacker p = new ECMAScriptPacker( 108 ECMAScriptPacker.PackerEncoding.Normal, true, false); 109 string packedOutput = p.Pack(script).Replace("\n", "\r\n"); 110 111 StringBuilder sb = new StringBuilder(); 112 113 sb.AppendLine("/*"); 114 sb.AppendLine(" * " + PackerName); 115 sb.AppendLine(" * Javascript Compressor"); 116 sb.AppendLine(" * http://dean.edwards.name/"); 117 sb.AppendLine(" * http://www.smallsharptools.com/"); 118 sb.AppendLine("*/"); 119 sb.Append(packedOutput); 120 121 return sb.ToString(); 122 } 123 124 private static string RunJsMin(string script) 125 { 126 StringBuilder sb = new StringBuilder(); 127 JavaScriptMinifier jsmin = new JavaScriptMinifier(); 128 string minifiedOutput = jsmin.Minify(script); 129 130 sb.AppendLine("/*"); 131 sb.AppendLine(" * " + JsMinName); 132 sb.AppendLine(" * Javascript Compressor"); 133 sb.AppendLine(" * http://www.crockford.com/"); 134 sb.AppendLine(" * http://www.smallsharptools.com/"); 135 sb.AppendLine("*/"); 136 137 sb.Append(minifiedOutput); 138 139 return sb.ToString(); 81 Utility.Run(outputFile, mode, inputFiles.ToArray(), true); 140 82 } 141 83 … … 153 95 } 154 96 155 private static void ShowMessage(string message, bool isWarning)156 {157 if (isWarning)158 {159 Console.ForegroundColor = ConsoleColor.Red;160 }161 else162 {163 Console.ForegroundColor = ConsoleColor.White;164 }165 Console.WriteLine(message);166 }167 97 } 168 98 } trunk/Packer.sln
r5 r12 1 1 Microsoft Visual Studio Solution File, Format Version 9.00 2 2 # Visual Studio 2005 3 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dean.Edwards", "ClassLibrary\Dean.Edwards.csproj", "{04E76982-5197-4625-8F78-90673DB5807E}"4 EndProject5 3 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ConsoleApplication", "ConsoleApplication\ConsoleApplication.csproj", "{8205ABD6-D6D5-41DC-965F-9B788E2D7752}" 4 ProjectSection(WebsiteProperties) = preProject 5 Debug.AspNetCompiler.Debug = "True" 6 Release.AspNetCompiler.Debug = "False" 7 EndProjectSection 6 8 EndProject 7 9 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WinForm", "WinForm\WinForm.csproj", "{623E4743-2C7B-42B8-A131-A9AB98A6142D}" 10 ProjectSection(WebsiteProperties) = preProject 11 Debug.AspNetCompiler.Debug = "True" 12 Release.AspNetCompiler.Debug = "False" 13 EndProjectSection 8 14 EndProject 9 15 Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{B823624D-D02B-4E91-B7F9-2AD80C3329C0}" 16 ProjectSection(WebsiteProperties) = preProject 17 Debug.AspNetCompiler.Debug = "True" 18 Release.AspNetCompiler.Debug = "False" 19 EndProjectSection 10 20 ProjectSection(SolutionItems) = preProject 11 21 build.proj = build.proj 22 MSBuild.Packer.Targets = MSBuild.Packer.Targets 12 23 README.txt = README.txt 13 24 RunBuild.cmd = RunBuild.cmd 25 sample.proj = sample.proj 14 26 SolutionInfo.cs = SolutionInfo.cs 15 27 EndProjectSection 16 28 EndProject 17 29 Project("{54435603-DBB4-11D2-8724-00A0C9A8B90C}") = "Setup", "Setup\Setup.vdproj", "{79057FE7-4669-4F8D-ABF0-2BCA64EEF877}" 30 ProjectSection(WebsiteProperties) = preProject 31 Debug.AspNetCompiler.Debug = "True" 32 Release.AspNetCompiler.Debug = "False" 33 EndProjectSection 18 34 EndProject 19 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JavaScriptSupport", "JavaScriptSupport\JavaScriptSupport.csproj", "{84D840D9-E6B9-4AD3-B5CE-B3887DF28849}" 35 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClassLibrary", "ClassLibrary\ClassLibrary.csproj", "{155538CC-3983-4D87-B2F8-5B6854FB460F}" 36 ProjectSection(WebsiteProperties) = preProject 37 Debug.AspNetCompiler.Debug = "True" 38 Release.AspNetCompiler.Debug = "False" 39 EndProjectSection 20 40 EndProject 21 41 Global … … 25 45 EndGlobalSection 26 46 GlobalSection(ProjectConfigurationPlatforms) = postSolution 27 {04E76982-5197-4625-8F78-90673DB5807E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU28 {04E76982-5197-4625-8F78-90673DB5807E}.Debug|Any CPU.Build.0 = Debug|Any CPU29 {04E76982-5197-4625-8F78-90673DB5807E}.Release|Any CPU.ActiveCfg = Release|Any CPU30 {04E76982-5197-4625-8F78-90673DB5807E}.Release|Any CPU.Build.0 = Release|Any CPU31 47 {8205ABD6-D6D5-41DC-965F-9B788E2D7752}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 32 48 {8205ABD6-D6D5-41DC-965F-9B788E2D7752}.Debug|Any CPU.Build.0 = Debug|Any CPU … … 39 55 {79057FE7-4669-4F8D-ABF0-2BCA64EEF877}.Debug|Any CPU.ActiveCfg = Debug 40 56 {79057FE7-4669-4F8D-ABF0-2BCA64EEF877}.Release|Any CPU.ActiveCfg = Release 41 { 84D840D9-E6B9-4AD3-B5CE-B3887DF28849}.Debug|Any CPU.ActiveCfg = Debug|Any CPU42 { 84D840D9-E6B9-4AD3-B5CE-B3887DF28849}.Debug|Any CPU.Build.0 = Debug|Any CPU43 { 84D840D9-E6B9-4AD3-B5CE-B3887DF28849}.Release|Any CPU.ActiveCfg = Release|Any CPU44 { 84D840D9-E6B9-4AD3-B5CE-B3887DF28849}.Release|Any CPU.Build.0 = Release|Any CPU57 {155538CC-3983-4D87-B2F8-5B6854FB460F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 58 {155538CC-3983-4D87-B2F8-5B6854FB460F}.Debug|Any CPU.Build.0 = Debug|Any CPU 59 {155538CC-3983-4D87-B2F8-5B6854FB460F}.Release|Any CPU.ActiveCfg = Release|Any CPU 60 {155538CC-3983-4D87-B2F8-5B6854FB460F}.Release|Any CPU.Build.0 = Release|Any CPU 45 61 EndGlobalSection 46 62 GlobalSection(SolutionProperties) = preSolution trunk/Setup/Setup.vdproj
r5 r12 28 28 "Entry" 29 29 { 30 "MsmKey" = "8:_459864E357BB488D808AEA106D6D24F3" 31 "OwnerKey" = "8:_UNDEFINED" 30 "MsmKey" = "8:_41514FF451449037423ADF86BA07C5D8" 31 "OwnerKey" = "8:_114AC4170FEA4DDBBDF37FD547818233" 32 "MsmSig" = "8:_UNDEFINED" 33 } 34 "Entry" 35 { 36 "MsmKey" = "8:_41514FF451449037423ADF86BA07C5D8" 37 "OwnerKey" = "8:_705AEB0306944ABD8D0B9E4D4BCD7E95" 32 38 "MsmSig" = "8:_UNDEFINED" 33 39 } … … 40 46 "Entry" 41 47 { 42 "MsmKey" = "8:_7CE68C3E5B9F6F041DF070C904B4E7D4" 43 "OwnerKey" = "8:_114AC4170FEA4DDBBDF37FD547818233" 44 "MsmSig" = "8:_UNDEFINED" 45 } 46 "Entry" 47 { 48 "MsmKey" = "8:_7CE68C3E5B9F6F041DF070C904B4E7D4" 49 "OwnerKey" = "8:_705AEB0306944ABD8D0B9E4D4BCD7E95" 48 "MsmKey" = "8:_A84600017CCB41A8ACE4BBDDDA3229EF" 49 "OwnerKey" = "8:_UNDEFINED" 50 50 "MsmSig" = "8:_UNDEFINED" 51 51 } … … 58 58 "Entry" 59 59 { 60 "MsmKey" = "8:_F2F628BD4CCFBA4F229B7762A4FD5929" 61 "OwnerKey" = "8:_114AC4170FEA4DDBBDF37FD547818233" 60 "MsmKey" = "8:_C694B4693D724A9599A4B8D84D4B9A0E" 61 "OwnerKey" = "8:_UNDEFINED" 62 "MsmSig" = "8:_UNDEFINED" 63 } 64 "Entry" 65 { 66 "MsmKey" = "8:_F42142A8A1324E06862A9A90AF45F330" 67 "OwnerKey" = "8:_UNDEFINED" 62 68 "MsmSig" = "8:_UNDEFINED" 63 69 } … … 71 77 { 72 78 "MsmKey" = "8:_UNDEFINED" 73 "OwnerKey" = "8:_F2F628BD4CCFBA4F229B7762A4FD5929" 74 "MsmSig" = "8:_UNDEFINED" 75 } 76 "Entry" 77 { 78 "MsmKey" = "8:_UNDEFINED" 79 "OwnerKey" = "8:_7CE68C3E5B9F6F041DF070C904B4E7D4" 80 "MsmSig" = "8:_UNDEFINED" 81 } 82 "Entry" 83 { 84 "MsmKey" = "8:_UNDEFINED" 85 "OwnerKey" = "8:_459864E357BB488D808AEA106D6D24F3" 79 "OwnerKey" = "8:_A84600017CCB41A8ACE4BBDDDA3229EF" 86 80 "MsmSig" = "8:_UNDEFINED" 87 81 } … … 90 84 "MsmKey" = "8:_UNDEFINED" 91 85 "OwnerKey" = "8:_114AC4170FEA4DDBBDF37FD547818233" 86 "MsmSig" = "8:_UNDEFINED" 87 } 88 "Entry" 89 { 90 "MsmKey" = "8:_UNDEFINED" 91 "OwnerKey" = "8:_41514FF451449037423ADF86BA07C5D8" 92 92 "MsmSig" = "8:_UNDEFINED" 93 93 } … … 202 202 "IsolateTo" = "8:" 203 203 } 204 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_ 7CE68C3E5B9F6F041DF070C904B4E7D4"204 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_41514FF451449037423ADF86BA07C5D8" 205 205 { 206 206 "AssemblyRegister" = "3:1" 207 207 "AssemblyIsInGAC" = "11:FALSE" 208 "AssemblyAsmDisplayName" = "8: Dean.Edwards, Version=3.0.0.5, Culture=neutral, processorArchitecture=MSIL"208 "AssemblyAsmDisplayName" = "8:SmallSharpTools.Packer, Version=3.0.2.0, Culture=neutral, processorArchitecture=MSIL" 209 209 "ScatterAssemblies" 210 210 { 211 "_ 7CE68C3E5B9F6F041DF070C904B4E7D4"212 { 213 "Name" = "8: Dean.Edwards.dll"211 "_41514FF451449037423ADF86BA07C5D8" 212 { 213 "Name" = "8:SmallSharpTools.Packer.dll" 214 214 "Attributes" = "3:512" 215 215 } 216 216 } 217 "SourcePath" = "8: Dean.Edwards.dll"217 "SourcePath" = "8:SmallSharpTools.Packer.dll" 218 218 "TargetName" = "8:" 219 219 "Tag" = "8:" … … 253 253 "IsolateTo" = "8:" 254 254 } 255 "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_F2F628BD4CCFBA4F229B7762A4FD5929" 256 { 257 "AssemblyRegister" = "3:1" 258 "AssemblyIsInGAC" = "11:FALSE" 259 "AssemblyAsmDisplayName" = "8:JavaScriptSupport, Version=3.0.0.5, Culture=neutral, processorArchitecture=MSIL" 260 "ScatterAssemblies" 261 { 262 "_F2F628BD4CCFBA4F229B7762A4FD5929" 263 { 264 "Name" = "8:JavaScriptSupport.dll" 265 "Attributes" = "3:512" 266 } 267 } 268 "SourcePath" = "8:JavaScriptSupport.dll" 269 "TargetName" = "8:" 255 "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_C694B4693D724A9599A4B8D84D4B9A0E" 256 { 257 "SourcePath" = "8:..\\MSBuild.Packer.Targets" 258 "TargetName" = "8:MSBuild.Packer.Targets" 270 259 "Tag" = "8:" 271 "Folder" = "8:_ 16739487AF67488495A0FE933355AB66"260 "Folder" = "8:_84AC722C5FB04CC28ED8EF2E178D219C" 272 261 "Condition" = "8:" 273 262 "Transitive" = "11:FALSE" … … 281 270 "Register" = "3:1" 282 271 "Exclude" = "11:FALSE" 283 "IsDependency" = "11:TRUE" 272 "IsDependency" = "11:FALSE" 273 "IsolateTo" = "8:" 274 } 275 "{1FB2D0AE-D3B9-43D4-B9DD-F88EC61E35DE}:_F42142A8A1324E06862A9A90AF45F330" 276 { 277 "SourcePath" = "8:..\\sample.proj" 278 "TargetName" = "8:sample.proj" 279 "Tag" = "8:" 280 "Folder" = "8:_84AC722C5FB04CC28ED8EF2E178D219C" 281 "Condition" = "8:" 282 "Transitive" = "11:FALSE" 283 "Vital" = "11:TRUE" 284 "ReadOnly" = "11:FALSE" 285 "Hidden" = "11:FALSE" 286 "System" = "11:FALSE" 287 "Permanent" = "11:FALSE" 288 "SharedLegacy" = "11:FALSE" 289 "PackageAs" = "3:1" 290 "Register" = "3:1" 291 "Exclude" = "11:FALSE" 292 "IsDependency" = "11:FALSE" 284 293 "IsolateTo" = "8:" 285 294 } … … 357 366 } 358 367 } 368 "{1525181F-901A-416C-8A58-119130FE478E}:_E2C3AA3676A4443B9915F50015C4E09B" 369 { 370 "Name" = "8:#1912" 371 "AlwaysCreate" = "11:FALSE" 372 "Condition" = "8:" 373 "Transitive" = "11:FALSE" 374 "Property" = "8:ProgramFilesFolder" 375 "Folders" 376 { 377 "{9EF0B969-E518-4E46-987F-47570745A589}:_5D7943A7EDBC4AEC865C7E14C8F0679B" 378 { 379 "Name" = "8:MSBuild" 380 "AlwaysCreate" = "11:FALSE" 381 "Condition" = "8:" 382 "Transitive" = "11:FALSE" 383 "Property" = "8:_8F79D00DC9BC47A393C9E6BDDFAB18F9" 384 "Folders" 385 { 386 "{9EF0B969-E518-4E46-987F-47570745A589}:_84AC722C5FB04CC28ED8EF2E178D219C" 387 { 388 "Name" = "8:SmallSharpTools.Packer" 389 "AlwaysCreate" = "11:FALSE" 390 "Condition" = "8:" 391 "Transitive" = "11:FALSE" 392 "Property" = "8:_8FF81EB02DF24EFD8F0001FA6A68EBF4" 393 "Folders" 394 { 395 } 396 } 397 } 398 } 399 } 400 } 359 401 } 360 402 "LaunchCondition" … … 371 413 { 372 414 "Name" = "8:Microsoft Visual Studio" 373 "ProductName" = "8:Packer "374 "ProductCode" = "8:{ 9C86F859-65CD-4714-8FDA-44919489ADF5}"375 "PackageCode" = "8:{ 63629A28-72B0-4826-99AA-F7EE2D2E8319}"415 "ProductName" = "8:Packer for .NET" 416 "ProductCode" = "8:{0190DAE1-9C4A-4407-A7B9-C19E3B8243AF}" 417 "PackageCode" = "8:{949A59FD-BFD2-4BD5-8C7B-ED278323F3CA}" 376 418 "UpgradeCode" = "8:{55622EB9-2BC2-4ED9-A38C-D707588542C2}" 377 419 "RestartWWWService" = "11:FALSE" … … 379 421 "DetectNewerInstalledVersion" = "11:TRUE" 380 422 "InstallAllUsers" = "11:TRUE" 381 "ProductVersion" = "8:3.0. 1"423 "ProductVersion" = "8:3.0.2" 382 424 "Manufacturer" = "8:SmallSharpTools.com" 383 425 "ARPHELPTELEPHONE" = "8:" 384 "ARPHELPLINK" = "8:http:// dean.edwards.name/"385 "Title" = "8:Packer "426 "ARPHELPLINK" = "8:http://www.smallsharptools.com/" 427 "Title" = "8:Packer for .NET" 386 428 "Subject" = "8:" 387 "ARPCONTACT" = "8: Dean Edwards"429 "ARPCONTACT" = "8:Brennan Stehling" 388 430 "Keywords" = "8:javascript, web" 389 431 "ARPCOMMENTS" = "8:Compress Javascript" … … 921 963 "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_114AC4170FEA4DDBBDF37FD547818233" 922 964 { 923 "SourcePath" = "8:..\\ConsoleApplication\\obj\\ Release\\Packer.exe"965 "SourcePath" = "8:..\\ConsoleApplication\\obj\\Debug\\Packer.exe" 924 966 "TargetName" = "8:" 925 967 "Tag" = "8:" … … 947 989 } 948 990 } 949 "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_459864E357BB488D808AEA106D6D24F3"950 {951 "SourcePath" = "8:..\\ClassLibrary\\obj\\Release\\Dean.Edwards.dll"952 "TargetName" = "8:"953 "Tag" = "8:"954 "Folder" = "8:_6CEBB82952614CC3B3DE20D764D0B0F4"955 "Condition" = "8:"956 "Transitive" = "11:FALSE"957 "Vital" = "11:TRUE"958 "ReadOnly" = "11:FALSE"959 "Hidden" = "11:FALSE"960 "System" = "11:FALSE"961 "Permanent" = "11:FALSE"962 "SharedLegacy" = "11:FALSE"963 "PackageAs" = "3:1"964 "Register" = "3:1"965 "Exclude" = "11:FALSE"966 "IsDependency" = "11:FALSE"967 "IsolateTo" = "8:"968 "ProjectOutputGroupRegister" = "3:1"969 "OutputConfiguration" = "8:"970 "OutputGroupCanonicalName" = "8:Built"971 "OutputProjectGuid" = "8:{04E76982-5197-4625-8F78-90673DB5807E}"972 "ShowKeyOutput" = "11:TRUE"973 "ExcludeFilters"974 {975 }976 }977 991 "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_705AEB0306944ABD8D0B9E4D4BCD7E95" 978 992 { 979 "SourcePath" = "8:..\\WinForm\\obj\\ Release\\Packer.Net.exe"993 "SourcePath" = "8:..\\WinForm\\obj\\Debug\\Packer.Net.exe" 980 994 "TargetName" = "8:" 981 995 "Tag" = "8:" … … 1003 1017 } 1004 1018 } 1019 "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_A84600017CCB41A8ACE4BBDDDA3229EF" 1020 { 1021 "SourcePath" = "8:..\\ClassLibrary\\obj\\Debug\\SmallSharpTools.Packer.dll" 1022 "TargetName" = "8:" 1023 "Tag" = "8:" 1024 "Folder" = "8:_84AC722C5FB04CC28ED8EF2E178D219C" 1025 "Condition" = "8:" 1026 "Transitive" = "11:FALSE" 1027 "Vital" = "11:TRUE" 1028 "ReadOnly" = "11:FALSE" 1029 "Hidden" = "11:FALSE" 1030 "System" = "11:FALSE" 1031 "Permanent" = "11:FALSE" 1032 "SharedLegacy" = "11:FALSE" 1033 "PackageAs" = "3:1" 1034 "Register" = "3:1" 1035 "Exclude" = "11:FALSE" 1036 "IsDependency" = "11:FALSE" 1037 "IsolateTo" = "8:" 1038 "ProjectOutputGroupRegister" = "3:1" 1039 "OutputConfiguration" = "8:" 1040 "OutputGroupCanonicalName" = "8:Built" 1041 "OutputProjectGuid" = "8:{155538CC-3983-4D87-B2F8-5B6854FB460F}" 1042 "ShowKeyOutput" = "11:TRUE" 1043 "ExcludeFilters" 1044 { 1045 } 1046 } 1005 1047 } 1006 1048 "VJSharpPlugin" trunk/SolutionInfo.cs
r5 r12 27 27 // You can specify all the values or you can default the Revision and Build Numbers 28 28 // by using the '*' as shown below: 29 [assembly: AssemblyVersion("3.0. 1.0")]30 [assembly: AssemblyFileVersion("3.0. 1.0")]29 [assembly: AssemblyVersion("3.0.2.0")] 30 [assembly: AssemblyFileVersion("3.0.2.0")] trunk/WinForm/WinForm.csproj
r5 r12 108 108 </ItemGroup> 109 109 <ItemGroup> 110 <ProjectReference Include="..\ClassLibrary\ Dean.Edwards.csproj">111 <Project>{ 04E76982-5197-4625-8F78-90673DB5807E}</Project>112 <Name> Dean.Edwards</Name>110 <ProjectReference Include="..\ClassLibrary\ClassLibrary.csproj"> 111 <Project>{155538CC-3983-4D87-B2F8-5B6854FB460F}</Project> 112 <Name>ClassLibrary</Name> 113 113 </ProjectReference> 114 114 </ItemGroup>
