Changeset 12

Show
Ignore:
Timestamp:
08/26/07 13:06:50 (1 year ago)
Author:
brennan
Message:

reorganized the project and added MSBuild Task

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ConsoleApplication/ConsoleApplication.csproj

    r5 r12  
    4343  </ItemGroup> 
    4444  <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" /> 
    5346  </ItemGroup> 
    5447  <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> 
    5652  </ItemGroup> 
    5753  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> 
  • trunk/ConsoleApplication/Program.cs

    r5 r12  
    11using System; 
     2using System.Collections.Generic; 
    23using System.Text; 
    34using System.IO; 
    45using Dean.Edwards; 
    56using JavaScriptSupport; 
     7using SmallSharpTools.Packer; 
    68 
    79namespace ConsoleApplication 
     
    1012    { 
    1113        private const string CommonName = "SmallSharpTools.Packer"; 
    12         private const string PackerName = "Packer 3.0"; 
    13         private const string JsMinName = "JsMin"; 
    1414 
    1515        static void Main(string[] args) 
     
    3737            } 
    3838 
    39             string mode = "packer"
     39            PackMode mode = PackMode.Packer
    4040 
    4141            if ("-m".Equals(args[startIndex])) 
     
    4343                if (args.Length > startIndex+1) 
    4444                { 
    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                    } 
    4660                    startIndex += 2; 
    4761                } 
     
    5367            } 
    5468 
    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             
    6271            for (int i=startIndex;i<args.Length;i++) 
    6372            { 
    6473                string filename = args[i]; 
    65                 ShowMessage("Processing " + filename, false); 
     74                Utility.ShowMessage("Processing " + filename, false); 
    6675                if (File.Exists(filename)) 
    6776                { 
    68                     StreamReader streamReader = File.OpenText(filename); 
    69                     sb.AppendLine(streamReader.ReadToEnd()); 
     77                    inputFiles.Add(filename); 
    7078                } 
    7179            } 
    7280 
    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); 
    14082        } 
    14183 
     
    15395        } 
    15496 
    155         private static void ShowMessage(string message, bool isWarning) 
    156         { 
    157             if (isWarning) 
    158             { 
    159                 Console.ForegroundColor = ConsoleColor.Red; 
    160             } 
    161             else 
    162             { 
    163                 Console.ForegroundColor = ConsoleColor.White; 
    164             } 
    165             Console.WriteLine(message); 
    166         } 
    16797    } 
    16898} 
  • trunk/Packer.sln

    r5 r12  
    11Microsoft Visual Studio Solution File, Format Version 9.00 
    22# Visual Studio 2005 
    3 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Dean.Edwards", "ClassLibrary\Dean.Edwards.csproj", "{04E76982-5197-4625-8F78-90673DB5807E}" 
    4 EndProject 
    53Project("{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 
    68EndProject 
    79Project("{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 
    814EndProject 
    915Project("{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 
    1020        ProjectSection(SolutionItems) = preProject 
    1121                build.proj = build.proj 
     22                MSBuild.Packer.Targets = MSBuild.Packer.Targets 
    1223                README.txt = README.txt 
    1324                RunBuild.cmd = RunBuild.cmd 
     25                sample.proj = sample.proj 
    1426                SolutionInfo.cs = SolutionInfo.cs 
    1527        EndProjectSection 
    1628EndProject 
    1729Project("{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 
    1834EndProject 
    19 Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JavaScriptSupport", "JavaScriptSupport\JavaScriptSupport.csproj", "{84D840D9-E6B9-4AD3-B5CE-B3887DF28849}" 
     35Project("{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 
    2040EndProject 
    2141Global 
     
    2545        EndGlobalSection 
    2646        GlobalSection(ProjectConfigurationPlatforms) = postSolution 
    27                 {04E76982-5197-4625-8F78-90673DB5807E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 
    28                 {04E76982-5197-4625-8F78-90673DB5807E}.Debug|Any CPU.Build.0 = Debug|Any CPU 
    29                 {04E76982-5197-4625-8F78-90673DB5807E}.Release|Any CPU.ActiveCfg = Release|Any CPU 
    30                 {04E76982-5197-4625-8F78-90673DB5807E}.Release|Any CPU.Build.0 = Release|Any CPU 
    3147                {8205ABD6-D6D5-41DC-965F-9B788E2D7752}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 
    3248                {8205ABD6-D6D5-41DC-965F-9B788E2D7752}.Debug|Any CPU.Build.0 = Debug|Any CPU 
     
    3955                {79057FE7-4669-4F8D-ABF0-2BCA64EEF877}.Debug|Any CPU.ActiveCfg = Debug 
    4056                {79057FE7-4669-4F8D-ABF0-2BCA64EEF877}.Release|Any CPU.ActiveCfg = Release 
    41                 {84D840D9-E6B9-4AD3-B5CE-B3887DF28849}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 
    42                 {84D840D9-E6B9-4AD3-B5CE-B3887DF28849}.Debug|Any CPU.Build.0 = Debug|Any CPU 
    43                 {84D840D9-E6B9-4AD3-B5CE-B3887DF28849}.Release|Any CPU.ActiveCfg = Release|Any CPU 
    44                 {84D840D9-E6B9-4AD3-B5CE-B3887DF28849}.Release|Any CPU.Build.0 = Release|Any CPU 
     57                {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 
    4561        EndGlobalSection 
    4662        GlobalSection(SolutionProperties) = preSolution 
  • trunk/Setup/Setup.vdproj

    r5 r12  
    2828        "Entry" 
    2929        { 
    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" 
    3238        "MsmSig" = "8:_UNDEFINED" 
    3339        } 
     
    4046        "Entry" 
    4147        { 
    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" 
    5050        "MsmSig" = "8:_UNDEFINED" 
    5151        } 
     
    5858        "Entry" 
    5959        { 
    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" 
    6268        "MsmSig" = "8:_UNDEFINED" 
    6369        } 
     
    7177        { 
    7278        "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" 
    8680        "MsmSig" = "8:_UNDEFINED" 
    8781        } 
     
    9084        "MsmKey" = "8:_UNDEFINED" 
    9185        "OwnerKey" = "8:_114AC4170FEA4DDBBDF37FD547818233" 
     86        "MsmSig" = "8:_UNDEFINED" 
     87        } 
     88        "Entry" 
     89        { 
     90        "MsmKey" = "8:_UNDEFINED" 
     91        "OwnerKey" = "8:_41514FF451449037423ADF86BA07C5D8" 
    9292        "MsmSig" = "8:_UNDEFINED" 
    9393        } 
     
    202202            "IsolateTo" = "8:" 
    203203            } 
    204             "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_7CE68C3E5B9F6F041DF070C904B4E7D4
     204            "{9F6F8455-1EF1-4B85-886A-4223BCC8E7F7}:_41514FF451449037423ADF86BA07C5D8
    205205            { 
    206206            "AssemblyRegister" = "3:1" 
    207207            "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" 
    209209                "ScatterAssemblies" 
    210210                { 
    211                     "_7CE68C3E5B9F6F041DF070C904B4E7D4
    212                     { 
    213                     "Name" = "8:Dean.Edwards.dll" 
     211                    "_41514FF451449037423ADF86BA07C5D8
     212                    { 
     213                    "Name" = "8:SmallSharpTools.Packer.dll" 
    214214                    "Attributes" = "3:512" 
    215215                    } 
    216216                } 
    217             "SourcePath" = "8:Dean.Edwards.dll" 
     217            "SourcePath" = "8:SmallSharpTools.Packer.dll" 
    218218            "TargetName" = "8:" 
    219219            "Tag" = "8:" 
     
    253253            "IsolateTo" = "8:" 
    254254            } 
    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" 
    270259            "Tag" = "8:" 
    271             "Folder" = "8:_16739487AF67488495A0FE933355AB66
     260            "Folder" = "8:_84AC722C5FB04CC28ED8EF2E178D219C
    272261            "Condition" = "8:" 
    273262            "Transitive" = "11:FALSE" 
     
    281270            "Register" = "3:1" 
    282271            "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" 
    284293            "IsolateTo" = "8:" 
    285294            } 
     
    357366                } 
    358367            } 
     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            } 
    359401        } 
    360402        "LaunchCondition" 
     
    371413        { 
    372414        "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}" 
    376418        "UpgradeCode" = "8:{55622EB9-2BC2-4ED9-A38C-D707588542C2}" 
    377419        "RestartWWWService" = "11:FALSE" 
     
    379421        "DetectNewerInstalledVersion" = "11:TRUE" 
    380422        "InstallAllUsers" = "11:TRUE" 
    381         "ProductVersion" = "8:3.0.1
     423        "ProductVersion" = "8:3.0.2
    382424        "Manufacturer" = "8:SmallSharpTools.com" 
    383425        "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
    386428        "Subject" = "8:" 
    387         "ARPCONTACT" = "8:Dean Edwards
     429        "ARPCONTACT" = "8:Brennan Stehling
    388430        "Keywords" = "8:javascript, web" 
    389431        "ARPCOMMENTS" = "8:Compress Javascript" 
     
    921963            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_114AC4170FEA4DDBBDF37FD547818233" 
    922964            { 
    923             "SourcePath" = "8:..\\ConsoleApplication\\obj\\Release\\Packer.exe" 
     965            "SourcePath" = "8:..\\ConsoleApplication\\obj\\Debug\\Packer.exe" 
    924966            "TargetName" = "8:" 
    925967            "Tag" = "8:" 
     
    947989                } 
    948990            } 
    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             } 
    977991            "{5259A561-127C-4D43-A0A1-72F10C7B3BF8}:_705AEB0306944ABD8D0B9E4D4BCD7E95" 
    978992            { 
    979             "SourcePath" = "8:..\\WinForm\\obj\\Release\\Packer.Net.exe" 
     993            "SourcePath" = "8:..\\WinForm\\obj\\Debug\\Packer.Net.exe" 
    980994            "TargetName" = "8:" 
    981995            "Tag" = "8:" 
     
    10031017                } 
    10041018            } 
     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            } 
    10051047        } 
    10061048        "VJSharpPlugin" 
  • trunk/SolutionInfo.cs

    r5 r12  
    2727// You can specify all the values or you can default the Revision and Build Numbers  
    2828// 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  
    108108  </ItemGroup> 
    109109  <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> 
    113113    </ProjectReference> 
    114114  </ItemGroup>