Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | 1.0.39.0 |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | sourceforge |
Files: | files | file ages | folders |
SHA1: |
89d321e77885634be9d3cdc632d98d40 |
User & Date: | rmsimpson 2007-01-10 19:14:44.000 |
Context
2007-01-11
| ||
07:06 | 1.0.39.0 check-in: 99146912d3 user: rmsimpson tags: sourceforge | |
2007-01-10
| ||
19:14 | 1.0.39.0 check-in: 89d321e778 user: rmsimpson tags: sourceforge | |
18:58 | 1.0.39.0 check-in: a9cc9e2eba user: rmsimpson tags: sourceforge | |
Changes
Changes to tools/install/Properties/Settings.Designer.cs.
1 2 3 4 5 6 7 8 9 10 | //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:2.0.50727.42 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ | | | | < | | | | < | | | < | < | | | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | //------------------------------------------------------------------------------ // <auto-generated> // This code was generated by a tool. // Runtime Version:2.0.50727.42 // // Changes to this file may cause incorrect behavior and will be lost if // the code is regenerated. // </auto-generated> //------------------------------------------------------------------------------ namespace install.Properties { [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "8.0.0.0")] internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); public static Settings Default { get { return defaultInstance; } } } } |
Changes to tools/install/Resources/System.Data.SQLite.dll.
cannot compute difference between binary files
Changes to tools/install/install.csproj.
︙ | ︙ | |||
44 45 46 47 48 49 50 | </Compile> <Compile Include="InstallDesigner.cs"> <SubType>Form</SubType> </Compile> <Compile Include="InstallDesigner.Designer.cs"> <DependentUpon>InstallDesigner.cs</DependentUpon> </Compile> | | > | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | </Compile> <Compile Include="InstallDesigner.cs"> <SubType>Form</SubType> </Compile> <Compile Include="InstallDesigner.Designer.cs"> <DependentUpon>InstallDesigner.cs</DependentUpon> </Compile> <Compile Include="Program.cs"> </Compile> <Compile Include="Properties\AssemblyInfo.cs" /> <EmbeddedResource Include="InstallDesigner.resx"> <SubType>Designer</SubType> <DependentUpon>InstallDesigner.cs</DependentUpon> </EmbeddedResource> <EmbeddedResource Include="Properties\Resources.resx"> <Generator>ResXFileCodeGenerator</Generator> |
︙ | ︙ | |||
71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | <Compile Include="Properties\Settings.Designer.cs"> <AutoGen>True</AutoGen> <DependentUpon>Settings.settings</DependentUpon> <DesignTimeSharedInput>True</DesignTimeSharedInput> </Compile> </ItemGroup> <ItemGroup> <None Include="Resources\System.Data.SQLite.DLL" /> </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. <Target Name="BeforeBuild"> </Target> <Target Name="AfterBuild"> </Target> --> </Project> | > > > > > > | 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 | <Compile Include="Properties\Settings.Designer.cs"> <AutoGen>True</AutoGen> <DependentUpon>Settings.settings</DependentUpon> <DesignTimeSharedInput>True</DesignTimeSharedInput> </Compile> </ItemGroup> <ItemGroup> <None Include="install.exe.manifest" /> <None Include="Resources\System.Data.SQLite.DLL" /> </ItemGroup> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <!-- To modify your build process, add your task inside one of the targets below and uncomment it. Other similar extension points exist, see Microsoft.Common.targets. <Target Name="BeforeBuild"> </Target> <Target Name="AfterBuild"> </Target> --> <PropertyGroup> <PostBuildEvent>"$(DevEnvDir)..\..\SDK\v2.0\bin\mt.exe" -manifest "$(ProjectDir)$(TargetName).exe.manifest" –outputresource:"$(TargetDir)$(TargetFileName)";#1 </PostBuildEvent> </PropertyGroup> </Project> |