Md5Sign.csproj 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  3. <Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
  4. <PropertyGroup>
  5. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  6. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  7. <ProjectGuid>{52A2023E-7975-49E1-B8BB-418EB9CAEC31}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>Md5Sign</RootNamespace>
  10. <AssemblyName>Md5Sign</AssemblyName>
  11. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <Deterministic>true</Deterministic>
  14. <TargetFrameworkProfile />
  15. </PropertyGroup>
  16. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  17. <PlatformTarget>AnyCPU</PlatformTarget>
  18. <DebugSymbols>true</DebugSymbols>
  19. <DebugType>full</DebugType>
  20. <Optimize>false</Optimize>
  21. <OutputPath>bin\Debug\</OutputPath>
  22. <DefineConstants>DEBUG;TRACE</DefineConstants>
  23. <ErrorReport>prompt</ErrorReport>
  24. <WarningLevel>4</WarningLevel>
  25. </PropertyGroup>
  26. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  27. <PlatformTarget>AnyCPU</PlatformTarget>
  28. <DebugType>pdbonly</DebugType>
  29. <Optimize>true</Optimize>
  30. <OutputPath>bin\Release\</OutputPath>
  31. <DefineConstants>TRACE</DefineConstants>
  32. <ErrorReport>prompt</ErrorReport>
  33. <WarningLevel>4</WarningLevel>
  34. </PropertyGroup>
  35. <ItemGroup>
  36. <Reference Include="System" />
  37. <Reference Include="System.Data" />
  38. <Reference Include="System.Deployment" />
  39. <Reference Include="System.Drawing" />
  40. <Reference Include="System.Windows.Forms" />
  41. <Reference Include="System.Xml" />
  42. </ItemGroup>
  43. <ItemGroup>
  44. <Compile Include="Base64Helper.cs" />
  45. <Compile Include="Form1.cs">
  46. <SubType>Form</SubType>
  47. </Compile>
  48. <Compile Include="Form1.Designer.cs">
  49. <DependentUpon>Form1.cs</DependentUpon>
  50. </Compile>
  51. <Compile Include="MD5Helper.cs" />
  52. <Compile Include="Program.cs" />
  53. <Compile Include="Properties\AssemblyInfo.cs" />
  54. <EmbeddedResource Include="Properties\Resources.resx">
  55. <Generator>ResXFileCodeGenerator</Generator>
  56. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  57. <SubType>Designer</SubType>
  58. </EmbeddedResource>
  59. <Compile Include="Properties\Resources.Designer.cs">
  60. <AutoGen>True</AutoGen>
  61. <DependentUpon>Resources.resx</DependentUpon>
  62. <DesignTime>True</DesignTime>
  63. </Compile>
  64. <None Include="app.config" />
  65. <None Include="Properties\Settings.settings">
  66. <Generator>SettingsSingleFileGenerator</Generator>
  67. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  68. </None>
  69. <Compile Include="Properties\Settings.Designer.cs">
  70. <AutoGen>True</AutoGen>
  71. <DependentUpon>Settings.settings</DependentUpon>
  72. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  73. </Compile>
  74. </ItemGroup>
  75. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  76. </Project>