AuthorizationSign.csproj 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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>{E0155A3B-42A2-4214-A239-1D0D629749BF}</ProjectGuid>
  8. <OutputType>WinExe</OutputType>
  9. <RootNamespace>AuthorizationSign</RootNamespace>
  10. <AssemblyName>AuthorizationSign</AssemblyName>
  11. <TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
  12. <FileAlignment>512</FileAlignment>
  13. <Deterministic>true</Deterministic>
  14. </PropertyGroup>
  15. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  16. <PlatformTarget>AnyCPU</PlatformTarget>
  17. <DebugSymbols>true</DebugSymbols>
  18. <DebugType>full</DebugType>
  19. <Optimize>false</Optimize>
  20. <OutputPath>bin\Debug\</OutputPath>
  21. <DefineConstants>DEBUG;TRACE</DefineConstants>
  22. <ErrorReport>prompt</ErrorReport>
  23. <WarningLevel>4</WarningLevel>
  24. </PropertyGroup>
  25. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  26. <PlatformTarget>AnyCPU</PlatformTarget>
  27. <DebugType>pdbonly</DebugType>
  28. <Optimize>true</Optimize>
  29. <OutputPath>bin\Release\</OutputPath>
  30. <DefineConstants>TRACE</DefineConstants>
  31. <ErrorReport>prompt</ErrorReport>
  32. <WarningLevel>4</WarningLevel>
  33. </PropertyGroup>
  34. <ItemGroup>
  35. <Reference Include="BouncyCastle.Crypto">
  36. <HintPath>Cn.Ubingo.Security\BouncyCastle.Crypto.dll</HintPath>
  37. </Reference>
  38. <Reference Include="Cn.Ubingo.Security.RSA.Core, Version=1.0.0.0, Culture=neutral, PublicKeyToken=09e65832abe9f999, processorArchitecture=MSIL">
  39. <SpecificVersion>False</SpecificVersion>
  40. <HintPath>Cn.Ubingo.Security\Cn.Ubingo.Security.RSA.Core.dll</HintPath>
  41. </Reference>
  42. <Reference Include="Cn.Ubingo.Security.RSA.Data, Version=1.0.0.0, Culture=neutral, PublicKeyToken=09e65832abe9f999, processorArchitecture=MSIL">
  43. <SpecificVersion>False</SpecificVersion>
  44. <HintPath>Cn.Ubingo.Security\Cn.Ubingo.Security.RSA.Data.dll</HintPath>
  45. </Reference>
  46. <Reference Include="Cn.Ubingo.Security.RSA.Key, Version=1.0.0.0, Culture=neutral, PublicKeyToken=09e65832abe9f999, processorArchitecture=MSIL">
  47. <SpecificVersion>False</SpecificVersion>
  48. <HintPath>Cn.Ubingo.Security\Cn.Ubingo.Security.RSA.Key.dll</HintPath>
  49. </Reference>
  50. <Reference Include="System" />
  51. <Reference Include="System.Core" />
  52. <Reference Include="System.Xml.Linq" />
  53. <Reference Include="System.Data.DataSetExtensions" />
  54. <Reference Include="Microsoft.CSharp" />
  55. <Reference Include="System.Data" />
  56. <Reference Include="System.Deployment" />
  57. <Reference Include="System.Drawing" />
  58. <Reference Include="System.Windows.Forms" />
  59. <Reference Include="System.Xml" />
  60. </ItemGroup>
  61. <ItemGroup>
  62. <Compile Include="Base64Helper.cs" />
  63. <Compile Include="Form1.cs">
  64. <SubType>Form</SubType>
  65. </Compile>
  66. <Compile Include="Form1.Designer.cs">
  67. <DependentUpon>Form1.cs</DependentUpon>
  68. </Compile>
  69. <Compile Include="MD5Helper.cs" />
  70. <Compile Include="NewRsaHelper.cs" />
  71. <Compile Include="Program.cs" />
  72. <Compile Include="Properties\AssemblyInfo.cs" />
  73. <Compile Include="RsaHelper.cs" />
  74. <EmbeddedResource Include="Properties\Resources.resx">
  75. <Generator>ResXFileCodeGenerator</Generator>
  76. <LastGenOutput>Resources.Designer.cs</LastGenOutput>
  77. <SubType>Designer</SubType>
  78. </EmbeddedResource>
  79. <Compile Include="Properties\Resources.Designer.cs">
  80. <AutoGen>True</AutoGen>
  81. <DependentUpon>Resources.resx</DependentUpon>
  82. </Compile>
  83. <None Include="Properties\Settings.settings">
  84. <Generator>SettingsSingleFileGenerator</Generator>
  85. <LastGenOutput>Settings.Designer.cs</LastGenOutput>
  86. </None>
  87. <Compile Include="Properties\Settings.Designer.cs">
  88. <AutoGen>True</AutoGen>
  89. <DependentUpon>Settings.settings</DependentUpon>
  90. <DesignTimeSharedInput>True</DesignTimeSharedInput>
  91. </Compile>
  92. </ItemGroup>
  93. <Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
  94. </Project>