Skip to content

Commit

Permalink
Squashed commit of the following:Added support for SHA1 SHA256 and MD5.
Browse files Browse the repository at this point in the history
installer still required

commit 894f104
Author: Gary Kenneally <garykenneally@gmail.com>
Date:   Fri Feb 24 15:43:53 2012 +0000

    irst version.
  • Loading branch information
SecretDeveloper committed Feb 24, 2012
1 parent 6ac559e commit fb6f0e8
Show file tree
Hide file tree
Showing 16 changed files with 973 additions and 0 deletions.
91 changes: 91 additions & 0 deletions src/ChecksumChecker/ChecksumChecker.csproj
@@ -0,0 +1,91 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
<ProductVersion>8.0.30703</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{78A3E209-9652-434B-8CBE-76FD2499A14F}</ProjectGuid>
<OutputType>WinExe</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>ChecksumChecker</RootNamespace>
<AssemblyName>ChecksumChecker</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
<PlatformTarget>x86</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="System.Data" />
<Reference Include="System.Deployment" />
<Reference Include="System.Drawing" />
<Reference Include="System.Windows.Forms" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Form1.cs">
<SubType>Form</SubType>
</Compile>
<Compile Include="Form1.Designer.cs">
<DependentUpon>Form1.cs</DependentUpon>
</Compile>
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<EmbeddedResource Include="Form1.resx">
<DependentUpon>Form1.cs</DependentUpon>
</EmbeddedResource>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
<SubType>Designer</SubType>
</EmbeddedResource>
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<None Include="Properties\Settings.settings">
<Generator>SettingsSingleFileGenerator</Generator>
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
</None>
<Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen>
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\ChecksumLib\ChecksumLib.csproj">
<Project>{C95844A1-4E04-40BD-915B-A3254D45AF73}</Project>
<Name>ChecksumLib</Name>
</ProjectReference>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\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>
42 changes: 42 additions & 0 deletions src/ChecksumChecker/ChecksumChecker.sln
@@ -0,0 +1,42 @@

Microsoft Visual Studio Solution File, Format Version 11.00
# Visual Studio 2010
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChecksumChecker", "ChecksumChecker.csproj", "{78A3E209-9652-434B-8CBE-76FD2499A14F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ChecksumLib", "..\ChecksumLib\ChecksumLib.csproj", "{C95844A1-4E04-40BD-915B-A3254D45AF73}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Debug|Mixed Platforms = Debug|Mixed Platforms
Debug|x86 = Debug|x86
Release|Any CPU = Release|Any CPU
Release|Mixed Platforms = Release|Mixed Platforms
Release|x86 = Release|x86
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{78A3E209-9652-434B-8CBE-76FD2499A14F}.Debug|Any CPU.ActiveCfg = Debug|x86
{78A3E209-9652-434B-8CBE-76FD2499A14F}.Debug|Mixed Platforms.ActiveCfg = Debug|x86
{78A3E209-9652-434B-8CBE-76FD2499A14F}.Debug|Mixed Platforms.Build.0 = Debug|x86
{78A3E209-9652-434B-8CBE-76FD2499A14F}.Debug|x86.ActiveCfg = Debug|x86
{78A3E209-9652-434B-8CBE-76FD2499A14F}.Debug|x86.Build.0 = Debug|x86
{78A3E209-9652-434B-8CBE-76FD2499A14F}.Release|Any CPU.ActiveCfg = Release|x86
{78A3E209-9652-434B-8CBE-76FD2499A14F}.Release|Mixed Platforms.ActiveCfg = Release|x86
{78A3E209-9652-434B-8CBE-76FD2499A14F}.Release|Mixed Platforms.Build.0 = Release|x86
{78A3E209-9652-434B-8CBE-76FD2499A14F}.Release|x86.ActiveCfg = Release|x86
{78A3E209-9652-434B-8CBE-76FD2499A14F}.Release|x86.Build.0 = Release|x86
{C95844A1-4E04-40BD-915B-A3254D45AF73}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{C95844A1-4E04-40BD-915B-A3254D45AF73}.Debug|Any CPU.Build.0 = Debug|Any CPU
{C95844A1-4E04-40BD-915B-A3254D45AF73}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
{C95844A1-4E04-40BD-915B-A3254D45AF73}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
{C95844A1-4E04-40BD-915B-A3254D45AF73}.Debug|x86.ActiveCfg = Debug|Any CPU
{C95844A1-4E04-40BD-915B-A3254D45AF73}.Release|Any CPU.ActiveCfg = Release|Any CPU
{C95844A1-4E04-40BD-915B-A3254D45AF73}.Release|Any CPU.Build.0 = Release|Any CPU
{C95844A1-4E04-40BD-915B-A3254D45AF73}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
{C95844A1-4E04-40BD-915B-A3254D45AF73}.Release|Mixed Platforms.Build.0 = Release|Any CPU
{C95844A1-4E04-40BD-915B-A3254D45AF73}.Release|x86.ActiveCfg = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
Binary file added src/ChecksumChecker/ChecksumChecker.suo
Binary file not shown.
180 changes: 180 additions & 0 deletions src/ChecksumChecker/Form1.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fb6f0e8

Please sign in to comment.